summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-08 02:10:42 +0200
committersnowleo <schneeleo@gmail.com>2011-07-08 02:10:42 +0200
commitcb5ab32be6e300183bf36ef1a5187a758106c444 (patch)
tree8667a0cb98f217e48c45ce79f787f850d8da1c79
parent244674124b29abe9a04f26fe95ee5196ff71458a (diff)
downloadEssentials-cb5ab32be6e300183bf36ef1a5187a758106c444.tar
Essentials-cb5ab32be6e300183bf36ef1a5187a758106c444.tar.gz
Essentials-cb5ab32be6e300183bf36ef1a5187a758106c444.tar.lz
Essentials-cb5ab32be6e300183bf36ef1a5187a758106c444.tar.xz
Essentials-cb5ab32be6e300183bf36ef1a5187a758106c444.zip
Set priority to Highest to prevent item dupe with trade signs.
-rw-r--r--Essentials/src/com/earth2me/essentials/Essentials.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java
index 27dc46409..af088c4cb 100644
--- a/Essentials/src/com/earth2me/essentials/Essentials.java
+++ b/Essentials/src/com/earth2me/essentials/Essentials.java
@@ -196,7 +196,7 @@ public class Essentials extends JavaPlugin implements IEssentials
final SignBlockListener signBlockListener = new SignBlockListener(this);
pm.registerEvent(Type.SIGN_CHANGE, signBlockListener, Priority.Low, this);
pm.registerEvent(Type.BLOCK_PLACE, signBlockListener, Priority.Low, this);
- pm.registerEvent(Type.BLOCK_BREAK, signBlockListener, Priority.Lowest, this);
+ pm.registerEvent(Type.BLOCK_BREAK, signBlockListener, Priority.Highest, this);
pm.registerEvent(Type.BLOCK_IGNITE, signBlockListener, Priority.Low, this);
pm.registerEvent(Type.BLOCK_BURN, signBlockListener, Priority.Low, this);