Skip to content

Commit

Permalink
Change vanilla generator listener priority to monitor, as it does not…
Browse files Browse the repository at this point in the history
… cancels it, and should always be processed at the end.
  • Loading branch information
BONNe committed Jun 28, 2020
1 parent 7715b47 commit fb879f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public VanillaGeneratorListener(StoneGeneratorAddon addon)
* Handles magic generation when a block is formed
* @param event - event
*/
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
public void onBlockFormEvent(BlockFormEvent event)
{
Block eventSourceBlock = event.getBlock();
Expand Down

0 comments on commit fb879f6

Please sign in to comment.