diff options
author | feildmaster <admin@feildmaster.com> | 2011-10-03 03:45:38 -0500 |
---|---|---|
committer | feildmaster <admin@feildmaster.com> | 2011-10-03 03:45:38 -0500 |
commit | 4c0fc6e52fc9ca035b16ee0065dfdccbb9a9b68c (patch) | |
tree | 4867c169b27d036ac6a03ac823d878444a431514 /EssentialsChat/src/com/earth2me | |
parent | 3b9aa445e911ac3791535ddcdb77e69effa199ce (diff) | |
download | Essentials-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/src/com/earth2me')
-rw-r--r-- | EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChat.java | 2 |
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")); |