Browse Source

We need to get our priorities straight.

GJ 12 năm trước cách đây
mục cha
commit
132fcb8c74

+ 8 - 8
src/main/java/com/gmail/nossr50/listeners/BlockListener.java

@@ -248,12 +248,12 @@ public class BlockListener implements Listener {
     }
     }
 
 
     /**
     /**
-     * Handle BlockDamage events where the event is modified.
+     * Monitor BlockDamage events.
      *
      *
-     * @param event The event to modify
+     * @param event The event to watch
      */
      */
-    @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
-    public void onBlockDamageHigher(BlockDamageEvent event) {
+    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
+    public void onBlockDamage(BlockDamageEvent event) {
         if (event instanceof FakeBlockDamageEvent) {
         if (event instanceof FakeBlockDamageEvent) {
             return;
             return;
         }
         }
@@ -303,12 +303,12 @@ public class BlockListener implements Listener {
     }
     }
 
 
     /**
     /**
-     * Monitor BlockDamage events.
+     * Handle BlockDamage events where the event is modified.
      *
      *
-     * @param event The event to watch
+     * @param event The event to modify
      */
      */
-    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
-    public void onBlockDamage(BlockDamageEvent event) {
+    @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
+    public void onBlockDamageHigher(BlockDamageEvent event) {
         if (event instanceof FakeBlockDamageEvent) {
         if (event instanceof FakeBlockDamageEvent) {
             return;
             return;
         }
         }