home · contact · privacy
Consistent use of "pickup" instead of "pickup" as command name.
[plomrogue] / server / config / commands.py
index 0184051c5218f50426499e2df61f35bb728c66b4..84ac8e298c32d79c381bd1278a4ba3f9e20f252a 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 server.commands import command_plugin, command_quit, command_ping, \
     command_thingshere, command_makeworld, command_seedrandomness, setter, \
     command_maplength, command_worldactive, setter_map, command_taid, \
@@ -55,7 +60,7 @@ commands_db = {
     "T_POSX": (1, False, setter_tpos("X")),
     "wait": (0, False, play_wait),
     "move": (1, False, play_move),
-    "pick_up": (0, False, play_pickup),
+    "pickup": (0, False, play_pickup),
     "drop": (1, False, play_drop),
     "use": (1, False, play_use),
     "ai": (0, False, command_ai)