Skip to content
This repository has been archived by the owner on Nov 12, 2018. It is now read-only.

Commit

Permalink
Exclude ChangeBlockEvent.Pre explicitly (for SpongeForge)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertHerhold committed May 15, 2017
1 parent 5f79b85 commit 9e78482
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ public GeneralEventListener(BadgeUpSponge plugin) {
@Listener(order = Order.POST)
@Exclude({
AnimateHandEvent.class,
ChangeBlockEvent.class, // handled below by changeBlock
// handled below by changeBlock
// have to include ChangeBlockEvent.Pre b/c of https://github.com/SpongePowered/SpongeForge/issues/1513
ChangeBlockEvent.class, ChangeBlockEvent.Pre.class,
// Pickup handled below by pickupItem
ChangeInventoryEvent.Held.class, ChangeInventoryEvent.Pickup.class,
ChangeStatisticEvent.class,
Expand Down

0 comments on commit 9e78482

Please sign in to comment.