summaryrefslogtreecommitdiffstats
path: root/EssentialsChat
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-03-22 22:15:18 +0000
committerKHobbits <rob@khobbits.co.uk>2012-03-22 22:19:58 +0000
commit1002a5a9024944cf31772890d51d01fd99ac5983 (patch)
treeb9f9bf2ccec930c2e4cbcfdacaf551e4683073b6 /EssentialsChat
parente843e5df00c298af0ac37190485be1d22fac257c (diff)
downloadEssentials-1002a5a9024944cf31772890d51d01fd99ac5983.tar
Essentials-1002a5a9024944cf31772890d51d01fd99ac5983.tar.gz
Essentials-1002a5a9024944cf31772890d51d01fd99ac5983.tar.lz
Essentials-1002a5a9024944cf31772890d51d01fd99ac5983.tar.xz
Essentials-1002a5a9024944cf31772890d51d01fd99ac5983.zip
New Permission: essentials.chat.url
Without this perm, URLs will be modified not to be links.
Diffstat (limited to 'EssentialsChat')
-rw-r--r--EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java
index 2c0906cbf..599c39dda 100644
--- a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java
+++ b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java
@@ -37,9 +37,12 @@ public class EssentialsChatPlayerListenerLowest extends EssentialsChatPlayer
/**
* This listener should apply the general chat formatting only...then return control back the event handler
*/
- event.setMessage(Util.formatString(user, "essentials.chat", event.getMessage()));
+ event.setMessage(Util.formatMessage(user, "essentials.chat", event.getMessage()));
String group = user.getGroup();
String world = user.getWorld().getName();
- event.setFormat(ess.getSettings().getChatFormat(group).format(new Object[] {group, world, world.substring(0, 1).toUpperCase(Locale.ENGLISH)}));
+ event.setFormat(ess.getSettings().getChatFormat(group).format(new Object[]
+ {
+ group, world, world.substring(0, 1).toUpperCase(Locale.ENGLISH)
+ }));
}
}