Use Chat::formatMessage in Main-Files

This commit is contained in:
Alexander Nell
2020-05-30 23:33:52 +02:00
parent 965ee220ba
commit 5717589588
2 changed files with 18 additions and 5 deletions

View File

@ -131,8 +131,12 @@ class ErrorHandler {
if ($isFatalError) {
$this->maniaControl->getPluginManager()->deactivatePlugin($sourceClass);
$this->maniaControl->getChat()->sendError("Plugin " . $sourceClass . " has an Error -> The Plugin will be deactivated and ManiaControl restarted");
Logger::logError("Plugin " . $sourceClass . " has an Error -> The Plugin will be deactivated and ManiaControl restarted");
$message = $this->maniaControl->getChat()->formatMessage(
'Plugin %s has an Error -> The Plugin will be deactivated and ManiaControl restarted!',
$sourceClass
);
$this->maniaControl->getChat()->sendError($message);
Logger::logError("Plugin {$sourceClass} has an Error -> The Plugin will be deactivated and ManiaControl restarted!");
$isPluginError = true;
}
}
@ -482,8 +486,12 @@ class ErrorHandler {
$report['PluginVersion'] = PluginManager::getPluginVersion($sourceClass);
$this->maniaControl->getPluginManager()->deactivatePlugin($sourceClass);
$this->maniaControl->getChat()->sendError("Plugin " . $sourceClass . " has an Error -> The Plugin will be deactivated and ManiaControl restarted");
Logger::logError("Plugin " . $sourceClass . " has an Error -> The Plugin will be deactivated and ManiaControl restarted");
$message = $this->maniaControl->getChat()->formatMessage(
'Plugin %s has an Error -> The Plugin will be deactivated and ManiaControl restarted!',
$sourceClass
);
$this->maniaControl->getChat()->sendError($message);
Logger::logError("Plugin {$sourceClass} has an Error -> The Plugin will be deactivated and ManiaControl restarted!");
}
}