mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
execute floater command on other clients
This commit is contained in:
parent
da7d93f4c7
commit
01f7cfb04f
1 changed files with 6 additions and 3 deletions
|
|
@ -44,13 +44,16 @@ def ExcelCommand(command, arguments, clientid, accountid):
|
|||
spaz(arguments)
|
||||
|
||||
elif command in ['floater','flo']:
|
||||
floater(clientid)
|
||||
floater(arguments,clientid)
|
||||
|
||||
|
||||
def floater(clientid):
|
||||
def floater(arguments,clientid):
|
||||
try:
|
||||
from .. import floater
|
||||
if arguments ==[]:
|
||||
floater.assignFloInputs(clientid)
|
||||
else:
|
||||
floater.assignFloInputs(arguments[0])
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue