summaryrefslogtreecommitdiffstats
path: root/ajax/chat.ajax.php
diff options
context:
space:
mode:
Diffstat (limited to 'ajax/chat.ajax.php')
-rw-r--r--ajax/chat.ajax.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/ajax/chat.ajax.php b/ajax/chat.ajax.php
index 02fc396..5ac77e4 100644
--- a/ajax/chat.ajax.php
+++ b/ajax/chat.ajax.php
@@ -50,9 +50,12 @@ if ($_REQUEST['messages']) {
}
}
//Anyone commands:
+ if ($command == 'spoiler') {
+ $insertID = addchat($userID, $message);
+ }
if ($command == 'help') {
$r[0]['serverMessage'] = 'true';
- $r[0]['message'] = "Commands: /help /time . - Chat by Pathery.com";
+ $r[0]['message'] = "Commands: /help /time /spoiler . - Chat by Pathery.com";
$r[0]['secondsSince'] = 0;
$r[0]['userID'] = -1;
echo json_encode($r);
@@ -66,7 +69,7 @@ if ($_REQUEST['messages']) {
echo json_encode($r);
exit;
}
- } else {
+ } else {
$insertID = addchat($userID, $message);
}
}