home · contact · privacy
Consistent use of "pickup" instead of "pickup" as command name.
[plomrogue] / server / config / actions.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5
6 from server.actions import actor_wait, actor_move, actor_pickup, actor_drop, \
7     actor_use
8
9 action_db = {
10     "actor_wait": actor_wait,
11     "actor_move": actor_move,
12     "actor_pickup": actor_pickup,
13     "actor_drop": actor_drop,
14     "actor_use": actor_use
15 }