- updated readme

- removed core config file
- fixed chat utility settings
- improved commands handler
This commit is contained in:
Steffen Schröder
2013-11-10 14:56:37 +01:00
parent 31a32457c1
commit 644acaff82
6 changed files with 361 additions and 357 deletions

View File

@ -68,7 +68,7 @@ class Chat {
* @return bool
*/
public function sendInformation($message, $login = null, $prefix = false) {
$format = $this->maniaControl->settingManager->getSetting($this, 'ErrorFormat', '$fff');
$format = $this->maniaControl->settingManager->getSetting($this, 'InformationFormat', '$fff');
return $this->sendChat($format . $message, $login);
}
@ -81,7 +81,7 @@ class Chat {
* @return bool
*/
public function sendSuccess($message, $login = null, $prefix = false) {
$format = $this->maniaControl->settingManager->getSetting($this, 'ErrorFormat', '$0f0');
$format = $this->maniaControl->settingManager->getSetting($this, 'SuccessFormat', '$0f0');
return $this->sendChat($format . $message, $login);
}