From 4fd1c13eb24f1e822afb9ed280684c57008a9c44 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sat, 15 Jan 2011 17:18:46 -0500 Subject: [PATCH] Removed field that shouldn't be there. By: durron597 --- .../src/main/java/org/bukkit/event/block/BlockIgniteEvent.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java b/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java index deb66f19b5..e014c8db20 100644 --- a/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java +++ b/paper-api/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; }