summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortroido <troido@hotmail.com>2018-01-03 20:14:37 +0100
committertroido <troido@hotmail.com>2018-01-03 20:14:37 +0100
commit9f9d3634498afaebe1a4e51209f29ef5ba679211 (patch)
treed54b6043beb87ef26cd0ae8e3dcf3946738c290d
parentce3f13100e54ddcdd7fa5f1e2d7bc48b0acee957 (diff)
added world chat and made it default
-rw-r--r--asciifarm/client/inputhandling.hy2
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarm/client/inputhandling.hy b/asciifarm/client/inputhandling.hy
index b006073..0f22d68 100644
--- a/asciifarm/client/inputhandling.hy
+++ b/asciifarm/client/inputhandling.hy
@@ -43,7 +43,7 @@
(do
(setv msg (.join "" (drop 1 message)))
(if (= (first msg) "/")
- (inp ["say" msg])
+ (send ["chat" msg])
(self.runCommand msg)))
(inp ["say" message]))))