summaryrefslogtreecommitdiffstats
path: root/EssentialsChat
diff options
context:
space:
mode:
authorfeildmaster <admin@feildmaster.com>2011-10-03 03:45:38 -0500
committerfeildmaster <admin@feildmaster.com>2011-10-03 03:45:38 -0500
commit4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c (patch)
tree4867c169b27d036ac6a03ac823d878444a431514 /EssentialsChat
parent3b9aa445e911ac3791535ddcdb77e69effa199ce (diff)
downloadEssentials-4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c.tar
Essentials-4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c.tar.gz
Essentials-4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c.tar.lz
Essentials-4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c.tar.xz
Essentials-4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c.zip
Edited Priority to "High"
Adds compatibility to plugins that adds text to the current "format."
Diffstat (limited to 'EssentialsChat')
-rw-r--r--EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java
index 20b3756d0..7a10d9a92 100644
--- a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java
+++ b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java
@@ -25,7 +25,7 @@ public class EssentialsChat extends JavaPlugin
chatListener = new HashMap<String, IEssentialsChatListener>();
final EssentialsChatPlayerListener playerListener = new EssentialsChatPlayerListener(getServer(), ess, chatListener);
- pluginManager.registerEvent(Type.PLAYER_CHAT, playerListener, Priority.Highest, this);
+ pluginManager.registerEvent(Type.PLAYER_CHAT, playerListener, Priority.High, this);
if (!this.getDescription().getVersion().equals(ess.getDescription().getVersion()))
{
LOGGER.log(Level.WARNING, Util.i18n("versionMismatchAll"));