41 lines
800 B
Java
41 lines
800 B
Java
|
package net.minecraftforge.event.entity;
|
||
|
|
||
|
import net.minecraft.src.EntityPlayer;
|
||
|
import net.minecraft.src.World;
|
||
|
|
||
|
public class BonemealEvent extends PlayerEvent
|
||
|
{
|
||
|
public final World world;
|
||
|
public final int ID;
|
||
|
public final int X;
|
||
|
public final int Y;
|
||
|
public final int Z;
|
||
|
private boolean handeled = false;
|
||
|
|
||
|
public BonemealEvent(EntityPlayer player, World world, int id, int x, int y, int z)
|
||
|
{
|
||
|
super(player);
|
||
|
this.world = world;
|
||
|
this.ID = id;
|
||
|
this.X = x;
|
||
|
this.Y = y;
|
||
|
this.Z = z;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isCancelable()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public void setHandeled()
|
||
|
{
|
||
|
handeled = true;
|
||
|
}
|
||
|
|
||
|
public boolean isHandeled()
|
||
|
{
|
||
|
return handeled;
|
||
|
}
|
||
|
}
|