From b71a8184a7827fd36939aa2bd2f888dae9a4f840 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 10 Dec 2013 22:31:41 +0000 Subject: [PATCH] lil fix --- mud.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mud.php b/mud.php index 0cf35bc..0b09599 100644 --- a/mud.php +++ b/mud.php @@ -241,10 +241,10 @@ class mud extends model { $this->yell($_GET['msg']); break; case 'say': - $this->say($_GET['dest'], $_GET['msg']); + $this->say($_GET['msg']); break; case 'tell': - $this->tell(); + $this->tell($_GET['dest'], $_GET['msg']); break; case 'poll': $this->response($this->poll()); -- 2.30.2