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

@ -561,7 +561,12 @@ class ManiaControl implements CallbackListener, CommandListener, TimerListener,
$this->getAuthenticationManager()->sendNotAllowed($player);
return;
}
$this->getChat()->sendError('The command //restart got disabled, reboot ManiaControl with //reboot instead', $player);
$message = $this->getChat()->formatMessage(
'The command %s got disabled, reboot ManiaControl with %s instead!',
'//restart',
'//reboot'
);
$this->getChat()->sendError($message, $player);
}
/**