From 883c039f5c4c75122c4d57bcf04cb3a4bce25812 Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Sat, 19 Jul 2014 12:49:48 +0100 Subject: [PATCH] Don't spawn bonus ocelots when plugins spawn ocelots diff --git a/src/main/java/net/minecraft/server/EntityOcelot.java b/src/main/java/net/minecraft/server/EntityOcelot.java index aba3748..22aac7b 100644 --- a/src/main/java/net/minecraft/server/EntityOcelot.java +++ b/src/main/java/net/minecraft/server/EntityOcelot.java @@ -2,6 +2,7 @@ package net.minecraft.server; public class EntityOcelot extends EntityTameableAnimal { + public boolean spawnBonus = true; // Spigot private PathfinderGoalTempt bq; public EntityOcelot(World world) { @@ -213,7 +214,7 @@ public class EntityOcelot extends EntityTameableAnimal { public GroupDataEntity prepare(GroupDataEntity groupdataentity) { groupdataentity = super.prepare(groupdataentity); - if (this.world.random.nextInt(7) == 0) { + if (spawnBonus && this.world.random.nextInt(7) == 0) { // Spigot for (int i = 0; i < 2; ++i) { EntityOcelot entityocelot = new EntityOcelot(this.world); diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java index 92f7188..ea786ae 100644 --- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java @@ -1056,6 +1056,12 @@ public class CraftWorld implements World { } if (entity != null) { + // Spigot start + if (entity instanceof EntityOcelot) + { + ( (EntityOcelot) entity ).spawnBonus = false; + } + // Spigot end if (entity instanceof EntityInsentient) { ((EntityInsentient) entity).prepare((GroupDataEntity) null); } -- 1.9.1