home · contact · privacy
Consistent use of "pickup" instead of "pickup" as command name.
[plomrogue] / server / config / actions.py
index c07a9d83eff6067817062231189b3f70ca100682..3e10f3231dfb2b089814bc4fb44189e115dc3012 100644 (file)
@@ -1,10 +1,15 @@
-from server.actions import actor_wait, actor_move, actor_pick_up, actor_drop, \
+# 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.actions import actor_wait, actor_move, actor_pickup, actor_drop, \
     actor_use
 
 action_db = {
     "actor_wait": actor_wait,
     "actor_move": actor_move,
-    "actor_pick_up": actor_pick_up,
+    "actor_pickup": actor_pickup,
     "actor_drop": actor_drop,
     "actor_use": actor_use
 }