diff options
author | Fbenas <philbeansburton@gmail.com> | 2020-06-14 19:54:45 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2020-06-14 19:54:45 +0100 |
commit | 63abf135263107feb9fa77c70c4ffd48abe6f010 (patch) | |
tree | cdf6181a1831fd2dba236436a55e11ee81dffefa /Blatech.php | |
parent | 2e2ba3bb01f19f4141fc691b24610939302d3559 (diff) |
Switch to using @ for commands
Diffstat (limited to 'Blatech.php')
-rw-r--r-- | Blatech.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Blatech.php b/Blatech.php index fc414c3..305aea7 100644 --- a/Blatech.php +++ b/Blatech.php @@ -14,7 +14,7 @@ class Blatech $args = static::sanitiseArgs($args); $nick = ltrim(explode('!', $message[0])[0], ":"); $channel = $message[2]; - $msg = explode(" ", ltrim(trim($message[3], "\r\n"), ":!")); + $msg = explode(" ", ltrim(trim($message[3], "\r\n"), ":@")); if (!isset($msg[0])) { return null; |