diff --git a/dist/ba_root/mods/chatHandle/ChatCommands/commands/Fun.py b/dist/ba_root/mods/chatHandle/ChatCommands/commands/Fun.py index eabb2b6..45f04a7 100644 --- a/dist/ba_root/mods/chatHandle/ChatCommands/commands/Fun.py +++ b/dist/ba_root/mods/chatHandle/ChatCommands/commands/Fun.py @@ -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 - floater.assignFloInputs(clientid) + if arguments ==[]: + floater.assignFloInputs(clientid) + else: + floater.assignFloInputs(arguments[0]) except: pass