From a7e392131f0bd34b3b9c9210591c012e4889c26c Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Wed, 16 Dec 2015 00:22:26 +0100 Subject: [PATCH] New client: Add commands for picking up and waiting. --- client_prototype.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client_prototype.py b/client_prototype.py index 6328c8b..53b49b2 100644 --- a/client_prototype.py +++ b/client_prototype.py @@ -492,7 +492,9 @@ io = { "path_worldstate": "server/worldstate" } commands = { + "P": (command_sender("pick_up"),), "Q": (command_quit,), + "W": (command_sender("wait"),), "c": (command_sender("move south-east"), command_looker("south-east")), "d": (command_sender("move east"), command_looker("east")), "e": (command_sender("move north-east"), command_looker("north-east")), -- 2.30.2