From: Christian Heller Date: Wed, 16 Dec 2015 00:16:35 +0000 (+0100) Subject: New client: Add use command. X-Git-Tag: tce~231 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=87a95c28348a0d8ee25aa4c2faac3aebb39674c0 New client: Add use command. --- diff --git a/client_prototype.py b/client_prototype.py index ea7af0e..f5fc336 100644 --- a/client_prototype.py +++ b/client_prototype.py @@ -519,6 +519,7 @@ commands = { "D": (command_sender("drop", "inventory_selection"),), "P": (command_sender("pick_up"),), "Q": (command_quit,), + "U": (command_sender("use", "inventory_selection"),), "W": (command_sender("wait"),), "c": (command_sender("move south-east"), command_looker("south-east")), "d": (command_sender("move east"), command_looker("east")),