3 namespace App\TwitchBot;
5 class GuessingCancelCommand extends ChatCommand {
7 public function execute($args) {
8 if ($this->channel->hasActiveGuessing()) {
9 $this->channel->clearGuessing();
11 $msg = $this->channel->getGuessingSetting('cancel_message');
12 $this->messageChannel($msg);