X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fconfig%2Factions.py;h=5af2d75eb722a50c74ec9df7fa969a81026e9404;hb=26b0310b0c61804a781149032818d1c6f9b47fd9;hp=c07a9d83eff6067817062231189b3f70ca100682;hpb=08f8592f1a1e5d340b6c2372551f0a3da28a07d8;p=plomrogue diff --git a/server/config/actions.py b/server/config/actions.py index c07a9d8..5af2d75 100644 --- a/server/config/actions.py +++ b/server/config/actions.py @@ -1,10 +1,17 @@ -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 } +actor_pickup_test_hook = lambda x, y: True