]> git.localhorst.tv Git - alttp.git/blob - app/TwitchBot/GuessingCancelCommand.php
simple guessing game
[alttp.git] / app / TwitchBot / GuessingCancelCommand.php
1 <?php
2
3 namespace App\TwitchBot;
4
5 class GuessingCancelCommand extends ChatCommand {
6
7         public function execute($args) {
8                 if ($this->chanel->hasActiveGuessing()) {
9                         $this->channel->clearGuessing();
10                         $this->messageChannel('Guessing game cancelled');
11                 }
12         }
13
14 }
15
16 ?>