home · contact · privacy
Plugin: Add endgame.
[plomrogue] / client / commands.py
index 159af5dcd6ec58ce901491aabbfabbf392b64361..c1d61419dd8edb997394ba1d837abe2ebea283b4 100644 (file)
@@ -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