summaryrefslogtreecommitdiff
path: root/Client.php
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2020-06-14 19:54:45 +0100
committerFbenas <philbeansburton@gmail.com>2020-06-14 19:54:45 +0100
commit63abf135263107feb9fa77c70c4ffd48abe6f010 (patch)
treecdf6181a1831fd2dba236436a55e11ee81dffefa /Client.php
parent2e2ba3bb01f19f4141fc691b24610939302d3559 (diff)
Switch to using @ for commands
Diffstat (limited to 'Client.php')
-rw-r--r--Client.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Client.php b/Client.php
index 27b3126..f5cb7f2 100644
--- a/Client.php
+++ b/Client.php
@@ -165,7 +165,7 @@ class Client
if ($message[0] == 'PING') {
$this->pongCommand($message[1]);
} else {
- if (strpos($message[3], ":!") === 0) {
+ if (strpos($message[3], ":@") === 0) {
$args = '';
if(($count = count($message)) > 4) {
for ($i = 4; $i < $count; $i++ ) {