use new chatprefix command

This commit is contained in:
Beu 2025-03-15 12:19:24 +01:00
parent 18ea56e1c0
commit b2fbbb1f98

View File

@ -94,9 +94,9 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
*/ */
/** @var ManiaControl $maniaControl */ /** @var ManiaControl $maniaControl */
private $maniaControl = null; private $maniaControl = null;
/** @var MatchManagerCore */
private $MatchManagerCore = null; private $MatchManagerCore = null;
private $matchstatus = ""; private $matchstatus = "";
private $chatprefix = '$<$fc3$w🏆$m$> '; // Would like to create a setting but MC database doesn't support utf8mb4
private $device_code = ""; private $device_code = "";
private $access_token = ""; private $access_token = "";
private $matchid = ""; private $matchid = "";
@ -246,7 +246,7 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
if (($this->matchstatus == "running" || $this->matchstatus == "starting") && $setting->setting == self::SETTING_MATCHMANAGERGSHEET_DATA_MODE && $setting->value != $this->currentdatamode) { if (($this->matchstatus == "running" || $this->matchstatus == "starting") && $setting->setting == self::SETTING_MATCHMANAGERGSHEET_DATA_MODE && $setting->value != $this->currentdatamode) {
$setting->value = $this->currentdatamode; $setting->value = $this->currentdatamode;
$this->maniaControl->getSettingManager()->saveSetting($setting); $this->maniaControl->getSettingManager()->saveSetting($setting);
$this->maniaControl->getChat()->sendErrorToAdmins($this->chatprefix . 'You can\'t change data mode during a Match'); $this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() . 'You can\'t change data mode during a Match');
} }
} }
} }