X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fcommands.py;h=c1d61419dd8edb997394ba1d837abe2ebea283b4;hb=08e48fa62e37ab29b6b7728db0bf78407ff22ba4;hp=159af5dcd6ec58ce901491aabbfabbf392b64361;hpb=3d4ef72a869787ade399af85a42ab0aef9d73766;p=plomrogue diff --git a/client/commands.py b/client/commands.py index 159af5d..c1d6141 100644 --- a/client/commands.py +++ b/client/commands.py @@ -1,3 +1,8 @@ +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + from client.config.world_data import world_data from client.io import send from client.query_mapcell import query_mapcell @@ -22,7 +27,7 @@ def command_sender(string, int_field=None): int_string = "" if int_field: int_string = " " + str(world_data[int_field]) - send(string + int_string) + send(string + int_string) return command_send