X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=server%2Fconfig%2Fcommands.py;h=84ac8e298c32d79c381bd1278a4ba3f9e20f252a;hb=009f06a7a2baef5af4474b18fd75b19c05befb4f;hp=0184051c5218f50426499e2df61f35bb728c66b4;hpb=08f8592f1a1e5d340b6c2372551f0a3da28a07d8;p=plomrogue diff --git a/server/config/commands.py b/server/config/commands.py index 0184051..84ac8e2 100644 --- a/server/config/commands.py +++ b/server/config/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 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)