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)
|
spaz(arguments)
|
||||||
|
|
||||||
elif command in ['floater','flo']:
|
elif command in ['floater','flo']:
|
||||||
floater(clientid)
|
floater(arguments,clientid)
|
||||||
|
|
||||||
|
|
||||||
def floater(clientid):
|
def floater(arguments,clientid):
|
||||||
try:
|
try:
|
||||||
from .. import floater
|
from .. import floater
|
||||||
floater.assignFloInputs(clientid)
|
if arguments ==[]:
|
||||||
|
floater.assignFloInputs(clientid)
|
||||||
|
else:
|
||||||
|
floater.assignFloInputs(arguments[0])
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue