Use unicode hexadecimal for specials characters
Signed-off-by: MiLk <hello@emilienkenler.com>
This commit is contained in:
parent
274cddd9ff
commit
7cea521e97
4 changed files with 4 additions and 4 deletions
|
|
@ -162,7 +162,7 @@ public class JsonFileClientUpdateComponent 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", "\u00A2[WEB] ") + name + ": " + plugin.configuration.getString("websuffix", "\u00A7f") + message);
|
||||
ChatEvent event = new ChatEvent("web", name, message);
|
||||
plugin.events.trigger("webchat", event);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue