summaryrefslogtreecommitdiff
path: root/asciifarmclient/commandhandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'asciifarmclient/commandhandler.py')
-rw-r--r--asciifarmclient/commandhandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/asciifarmclient/commandhandler.py b/asciifarmclient/commandhandler.py
index 7cb3813..f4c1de1 100644
--- a/asciifarmclient/commandhandler.py
+++ b/asciifarmclient/commandhandler.py
@@ -77,7 +77,7 @@ class CommandHandler:
self.input(["say", text])
def pick(self, option):
- self.input(["interact", [None, "north", "south", "east", "west"], option])
+ self.input(["interact", ["none", "north", "south", "east", "west"], option])
def chat(self, text):
self.client.sendChat( text)
@@ -153,5 +153,5 @@ class CommandHandler:
self.input(json.loads(text))
def interact(self, arg):
- self.input(["interact", [None, "north", "south", "east", "west"], arg])
+ self.input(["interact", ["none", "north", "south", "east", "west"], arg])