X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue-server.py;h=8f44015f1979c69811b140e1cef86f5d1e3b9bfc;hb=6caae6abd4ff38c19d0f780f445fd08370e8e56b;hp=064f87283e960eb47c427ef981bb9439525f99ee;hpb=595eda374097a2191b2477190ea2e0f9cd6f93da;p=plomrogue diff --git a/plomrogue-server.py b/plomrogue-server.py index 064f872..8f44015 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -82,10 +82,10 @@ def obey(command, prefix, replay=False, do_record=False): except ValueError as err: print("Can't tokenize command string: " + str(err) + ".") return - if len(tokens) > 0 and tokens[0] in commands \ - and len(tokens) >= commands[tokens[0]][0] + 1: - if commands[tokens[0]][1]: - commands[tokens[0]][2]() + if len(tokens) > 0 and tokens[0] in commands_db \ + and len(tokens) >= commands_db[tokens[0]][0] + 1: + if commands_db[tokens[0]][1]: + commands_db[tokens[0]][2]() elif replay: print("Due to replay mode, reading command as 'go on in record'.") line = io_db["file_record"].readline() @@ -96,7 +96,7 @@ def obey(command, prefix, replay=False, do_record=False): else: print("Reached end of record file.") else: - commands[tokens[0]][2]() + commands_db[tokens[0]][2]() if do_record: record(command) else: