Should be LivingEntity

By: durron597 <martin.jared@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-08 08:05:04 -05:00
parent a617a398a1
commit b9bb03c09e

View File

@ -1,7 +1,7 @@
package org.bukkit.event.block; package org.bukkit.event.block;
import org.bukkit.Block; import org.bukkit.Block;
import org.bukkit.Entity; import org.bukkit.LivingEntity;
import org.bukkit.Player; import org.bukkit.Player;
import org.bukkit.event.Cancellable; import org.bukkit.event.Cancellable;
@ -17,14 +17,14 @@ import org.bukkit.event.Cancellable;
*/ */
public class BlockInteractEvent extends BlockEvent implements Cancellable { public class BlockInteractEvent extends BlockEvent implements Cancellable {
protected boolean cancel; protected boolean cancel;
protected Entity theEntity; protected LivingEntity theEntity;
/** /**
* @param type The type of this event * @param type The type of this event
* @param interactedBlock the block that was interacted with * @param interactedBlock the block that was interacted with
* @param who The entity that interacted with * @param who The entity that interacted with
*/ */
public BlockInteractEvent(Type type, Block interactedBlock, Entity who) { public BlockInteractEvent(Type type, Block interactedBlock, LivingEntity who) {
super(type, interactedBlock); super(type, interactedBlock);
theEntity = who; theEntity = who;
} }
@ -54,7 +54,7 @@ public class BlockInteractEvent extends BlockEvent implements Cancellable {
* *
* @return Entity the entity that triggered this event * @return Entity the entity that triggered this event
*/ */
public Entity getEntity() { public LivingEntity getEntity() {
return theEntity; return theEntity;
} }