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, 4 insertions, 0 deletions
diff --git a/asciifarmclient/commandhandler.py b/asciifarmclient/commandhandler.py
index 59b8a2c..1213d71 100644
--- a/asciifarmclient/commandhandler.py
+++ b/asciifarmclient/commandhandler.py
@@ -19,6 +19,7 @@ class CommandHandler:
self.commands = {
"input": self.input,
"move": self.move,
+ "describe": self.describe,
"say": self.say,
"pick": self.pick,
"chat": self.chat,
@@ -72,6 +73,9 @@ class CommandHandler:
def move(self, direction):
self.input(["move", direction])
+
+ def describe(self, direction):
+ self.input(["describe", direction])
def say(self, text):
self.input(["say", text])