mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 02:35:49 +01:00
Added EntityTame event. Fixes BUKKIT-1109
This commit is contained in:
parent
e625999f24
commit
fce3386aa0
2 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue