From 4614086ff4bcdcff16877c791a53814cd369fc7f Mon Sep 17 00:00:00 2001 From: durron597 Date: Sat, 15 Jan 2011 17:18:46 -0500 Subject: [PATCH] Removed field that shouldn't be there. --- src/main/java/org/bukkit/event/block/BlockIgniteEvent.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java b/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java index deb66f19..e014c8db 100644 --- a/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java +++ b/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java @@ -15,7 +15,6 @@ public class BlockIgniteEvent extends BlockEvent implements Cancellable { private IgniteCause cause; private boolean cancel; private Player thePlayer; - private Block theBlock; /** * @param Block, IgniteCause, Player or null. @@ -23,7 +22,6 @@ public class BlockIgniteEvent extends BlockEvent implements Cancellable { public BlockIgniteEvent(Block theBlock, IgniteCause cause, Player thePlayer) { super(Event.Type.BLOCK_IGNITE, theBlock); this.cause = cause; - this.theBlock = theBlock; this.thePlayer = thePlayer; this.cancel = false; }