Added EntityTame event. Fixes BUKKIT-1109

Dieser Commit ist enthalten in:
EvilSeph 2012-03-09 22:25:59 -05:00
Ursprung e625999f24
Commit fce3386aa0
2 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -115,7 +115,8 @@ public class EntityOcelot extends EntityTameableAnimal {
}
if (!this.world.isStatic) {
if (this.random.nextInt(3) == 0) {
// CraftBukkit - added event call and isCancelled check.
if (this.random.nextInt(3) == 0 && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTameEvent(this, entityhuman).isCancelled()) {
this.setTamed(true);
this.setCatType(1 + this.world.random.nextInt(3));
this.setOwnerName(entityhuman.name);

Datei anzeigen

@ -186,7 +186,8 @@ public class EntityWolf extends EntityTameableAnimal {
}
if (!this.world.isStatic) {
if (this.random.nextInt(3) == 0) {
// CraftBukkit - added event call and isCancelled check.
if (this.random.nextInt(3) == 0 && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTameEvent(this, entityhuman).isCancelled()) {
this.setTamed(true);
this.setPathEntity((PathEntity) null);
this.b((EntityLiving) null);