forgot to initialize cancel

This commit is contained in:
durron597 2011-01-09 12:33:27 -05:00
parent 5a1310148e
commit a83e58e462

View File

@ -27,6 +27,7 @@ public class BlockInteractEvent extends BlockEvent implements Cancellable {
public BlockInteractEvent(Type type, Block interactedBlock, LivingEntity who) {
super(type, interactedBlock);
theEntity = who;
cancel = false;
}
/**