net.minecraftforge.event.entity.player
Class UseHoeEvent

java.lang.Object
  extended by net.minecraftforge.event.Event
      extended by net.minecraftforge.event.entity.EntityEvent
          extended by net.minecraftforge.event.entity.living.LivingEvent
              extended by net.minecraftforge.event.entity.player.PlayerEvent
                  extended by net.minecraftforge.event.entity.player.UseHoeEvent

public class UseHoeEvent
extends PlayerEvent


Nested Class Summary
 
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.player.PlayerEvent
PlayerEvent.BreakSpeed, PlayerEvent.HarvestCheck
 
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.living.LivingEvent
LivingEvent.LivingJumpEvent, LivingEvent.LivingUpdateEvent
 
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.EntityEvent
EntityEvent.CanUpdate, EntityEvent.EnteringChunk
 
Nested classes/interfaces inherited from class net.minecraftforge.event.Event
Event.HasResult, Event.Result
 
Field Summary
 ItemStack current
          This event is fired when a player attempts to use a Hoe on a block, it can be canceled to completely prevent any further processing.
 World world
           
 int x
           
 int y
           
 int z
           
 
Fields inherited from class net.minecraftforge.event.entity.player.PlayerEvent
entityPlayer
 
Fields inherited from class net.minecraftforge.event.entity.living.LivingEvent
entityLiving
 
Fields inherited from class net.minecraftforge.event.entity.EntityEvent
entity
 
Constructor Summary
UseHoeEvent(EntityPlayer player, ItemStack current, World world, int x, int y, int z)
           
 
Method Summary
 
Methods inherited from class net.minecraftforge.event.Event
getListenerList, getResult, hasResult, isCancelable, isCanceled, setCanceled, setResult
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

current

public final ItemStack current
This event is fired when a player attempts to use a Hoe on a block, it can be canceled to completely prevent any further processing. You can also set the result to ALLOW to mark the event as processed and damage the hoe. setResult(ALLOW) is the same as the old setHandeled();


world

public final World world

x

public final int x

y

public final int y

z

public final int z
Constructor Detail

UseHoeEvent

public UseHoeEvent(EntityPlayer player,
                   ItemStack current,
                   World world,
                   int x,
                   int y,
                   int z)