Use unicode hexadecimal for specials characters

Signed-off-by: MiLk <hello@emilienkenler.com>
This commit is contained in:
MiLk 2011-06-09 00:30:50 +02:00
parent 274cddd9ff
commit 7cea521e97
4 changed files with 4 additions and 4 deletions

View file

@ -44,7 +44,7 @@ public class InternalClientUpdateComponent extends ClientUpdateComponent {
protected void webChat(String name, String message) {
// TODO: Change null to something meaningful.
plugin.mapManager.pushUpdate(new Client.ChatMessage("web", null, name, message, null));
Log.info(plugin.configuration.getString("webprefix", "§2[WEB] ") + name + ": " + plugin.configuration.getString("websuffix", "§f") + message);
Log.info(plugin.configuration.getString("webprefix", "\u00A72[WEB] ") + name + ": " + plugin.configuration.getString("websuffix", "\u00A7f") + message);
ChatEvent event = new ChatEvent("web", name, message);
plugin.events.trigger("webchat", event);
}