X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/add_free?a=blobdiff_plain;f=client%2Fconfig%2Fcommands.py;h=b7919475fc811e7a86d73b7fcbaf10a0bc1213b0;hb=0a56367e8396b2ece4c1bce8a25e93ceabd901c1;hp=c6cd627df58da6233c7e28c20ff5cde0d73f51d7;hpb=3d4ef72a869787ade399af85a42ab0aef9d73766;p=plomrogue diff --git a/client/config/commands.py b/client/config/commands.py index c6cd627..b791947 100644 --- a/client/config/commands.py +++ b/client/config/commands.py @@ -1,7 +1,13 @@ +# 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 client.commands import command_sender, command_look_scroller, \ command_quit, command_looker, command_inventory_selector, \ command_toggle_look_mode + commands = { "A": (command_sender("ai"),), "D": (command_sender("drop", "inventory_selection"),), @@ -21,4 +27,3 @@ commands = { "w": (command_sender("move north-west"), command_looker("north-west")), "x": (command_sender("move south-west"), command_looker("south-west")), } -