diff options
Diffstat (limited to 'ajax')
-rw-r--r-- | ajax/chat.ajax.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ajax/chat.ajax.php b/ajax/chat.ajax.php index 5ac77e4..ac682a7 100644 --- a/ajax/chat.ajax.php +++ b/ajax/chat.ajax.php @@ -49,13 +49,14 @@ if ($_REQUEST['messages']) { $insertID = addchat(-1, substr($message, 5));
}
}
- //Anyone commands:
- if ($command == 'spoiler') {
+ //javascript based commands:
+ if ($command == 'spoiler' OR $command == 'me') {
$insertID = addchat($userID, $message);
}
+ //For anyone
if ($command == 'help') {
$r[0]['serverMessage'] = 'true';
- $r[0]['message'] = "Commands: /help /time /spoiler . - Chat by Pathery.com";
+ $r[0]['message'] = "Commands: /help /time /spoiler /me. - Chat by Pathery.com";
$r[0]['secondsSince'] = 0;
$r[0]['userID'] = -1;
echo json_encode($r);
|