Added ItemDespawnEvent

Dieser Commit ist enthalten in:
Feildmaster 2011-10-17 07:38:03 -05:00 committet von Nathan Adams
Ursprung cc05bea457
Commit 6cc56b8c2c
2 geänderte Dateien mit 22 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,9 @@
package net.minecraft.server; package net.minecraft.server;
import org.bukkit.event.player.PlayerPickupItemEvent; // CraftBukkit // CraftBukkit start
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.player.PlayerPickupItemEvent;
// CraftBukkit End
public class EntityItem extends Entity { public class EntityItem extends Entity {
@ -83,6 +86,12 @@ public class EntityItem extends Entity {
++this.e; ++this.e;
++this.b; ++this.b;
if (this.b >= 6000) { if (this.b >= 6000) {
// CraftBukkit start
if(CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
this.b = 0;
return;
}
// CraftBukkit end
this.die(); this.die();
} }
} }

Datei anzeigen

@ -141,7 +141,6 @@ public class CraftEventFactory {
/** /**
* Player Interact event * Player Interact event
*/ */
public static PlayerInteractEvent callPlayerInteractEvent(EntityHuman who, Action action, ItemStack itemstack) { public static PlayerInteractEvent callPlayerInteractEvent(EntityHuman who, Action action, ItemStack itemstack) {
if (action != Action.LEFT_CLICK_AIR && action != Action.RIGHT_CLICK_AIR) { if (action != Action.LEFT_CLICK_AIR && action != Action.RIGHT_CLICK_AIR) {
throw new IllegalArgumentException(); throw new IllegalArgumentException();
@ -286,6 +285,18 @@ public class CraftEventFactory {
return event; return event;
} }
/**
* ItemDespawnEvent
*/
public static ItemDespawnEvent callItemDespawnEvent(EntityItem entityitem) {
org.bukkit.entity.Entity entity = entityitem.getBukkitEntity();
ItemDespawnEvent event = new ItemDespawnEvent(entity, entity.getLocation());
((CraftServer) entity.getServer()).getPluginManager().callEvent(event);
return event;
}
/** /**
* BlockFadeEvent * BlockFadeEvent
*/ */