Alchemy should fire BrewEvents

Fixes #2041
This commit is contained in:
TfT_02
2014-06-09 01:43:50 +02:00
parent 28a846e0cb
commit 836877ff93
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package com.gmail.nossr50.events.fake;
import org.bukkit.block.Block;
import org.bukkit.event.inventory.BrewEvent;
import org.bukkit.inventory.BrewerInventory;
public class FakeBrewEvent extends BrewEvent {
public FakeBrewEvent(Block brewer, BrewerInventory contents) {
super(brewer, contents);
}
}