From: Christian Heller Date: Wed, 16 Dec 2015 00:18:45 +0000 (+0100) Subject: New client: Add ai command. X-Git-Tag: tce~230 X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=commitdiff_plain;h=7c3c097fb318d12262564cfd15d4d1ef06008432;hp=87a95c28348a0d8ee25aa4c2faac3aebb39674c0;p=plomrogue New client: Add ai command. --- diff --git a/client_prototype.py b/client_prototype.py index f5fc336..baf42c9 100644 --- a/client_prototype.py +++ b/client_prototype.py @@ -516,6 +516,7 @@ io = { "path_worldstate": "server/worldstate" } commands = { + "A": (command_sender("ai"),), "D": (command_sender("drop", "inventory_selection"),), "P": (command_sender("pick_up"),), "Q": (command_quit,),