We need to get our priorities straight.

This commit is contained in:
GJ 2013-02-14 09:26:05 -05:00
parent 1492fa473f
commit 132fcb8c74

View File

@ -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) @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
public void onBlockDamageHigher(BlockDamageEvent event) { 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) @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
public void onBlockDamage(BlockDamageEvent event) { public void onBlockDamageHigher(BlockDamageEvent event) {
if (event instanceof FakeBlockDamageEvent) { if (event instanceof FakeBlockDamageEvent) {
return; return;
} }