mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
Removed field that shouldn't be there.
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
40364131cb
commit
4fd1c13eb2
1 changed files with 0 additions and 2 deletions
|
@ -15,7 +15,6 @@ public class BlockIgniteEvent extends BlockEvent implements Cancellable {
|
||||||
private IgniteCause cause;
|
private IgniteCause cause;
|
||||||
private boolean cancel;
|
private boolean cancel;
|
||||||
private Player thePlayer;
|
private Player thePlayer;
|
||||||
private Block theBlock;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Block, IgniteCause, Player or null.
|
* @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) {
|
public BlockIgniteEvent(Block theBlock, IgniteCause cause, Player thePlayer) {
|
||||||
super(Event.Type.BLOCK_IGNITE, theBlock);
|
super(Event.Type.BLOCK_IGNITE, theBlock);
|
||||||
this.cause = cause;
|
this.cause = cause;
|
||||||
this.theBlock = theBlock;
|
|
||||||
this.thePlayer = thePlayer;
|
this.thePlayer = thePlayer;
|
||||||
this.cancel = false;
|
this.cancel = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue