X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FTwitchBot%2FTwitchAppBot.php;h=a103a8847316c3ff8595a85a13a5459ea94e1f1b;hb=771f1761f0abec996838c0ccc71cec0219bad71a;hp=04d03e609cb6ecd007df3927d467e25de89b249f;hpb=7fc357a5943bf280ce2fa9aa97ec516af61efd69;p=alttp.git diff --git a/app/TwitchBot/TwitchAppBot.php b/app/TwitchBot/TwitchAppBot.php index 04d03e6..a103a88 100644 --- a/app/TwitchBot/TwitchAppBot.php +++ b/app/TwitchBot/TwitchAppBot.php @@ -24,7 +24,7 @@ class TwitchAppBot extends TwitchBot { if ($text[0] == '!') { $this->handleChatCommand($channel, $msg); } else if ( - $channel->hasActiveGuessing() && + $channel->isAcceptingGuesses() && !empty($msg->tags['user-id']) && !empty($msg->tags['display-name'] && $channel->isValidGuess($text)) @@ -41,16 +41,17 @@ class TwitchAppBot extends TwitchBot { public function handleChatCommand(Channel $channel, IRCMessage $msg) { $cmd = explode(' ', ltrim($msg->getText(), '!'), 2); - if (!isset($channel->chat_commands[$cmd[0]])) return; - $config = $channel->chat_commands[$cmd[0]]; - $this->getLogger()->info('got command '.$cmd[0].' on channel '.$channel->title); + $cmd_name = strtolower($cmd[0]); + if (!isset($channel->chat_commands[$cmd_name])) return; + $config = $channel->chat_commands[$cmd_name]; + $this->getLogger()->info('got command '.$cmd_name.' on channel '.$channel->title); try { $command = ChatCommand::create($this, $channel, $config); if ($command->checkAccess($msg)) { $command->execute($cmd[1] ?? ''); } } catch (\Exception $e) { - $this->getLogger()->warning('error executing command '.$cmd[0].' on channel '.$channel->title.': '.$e->getMessage()); + $this->getLogger()->warning('error executing command '.$cmd_name.' on channel '.$channel->title.': '.$e->getMessage()); } }