From: Christian Heller <c.heller@plomlompom.de>
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%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/reset_cookie?a=commitdiff_plain;h=7c3c097fb318d12262564cfd15d4d1ef06008432;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,),