Made using RAW_FISH on Ocelots when a player has the ability to instantly build not decrement the stack. Fixes BUKKIT-1439

Dieser Commit ist enthalten in:
EvilSeph 2012-04-03 14:13:27 -04:00
Ursprung 2315fb7789
Commit 0c9e1b13a0

Datei anzeigen

@ -110,7 +110,7 @@ public class EntityOcelot extends EntityTameableAnimal {
if (!this.isTamed()) {
if (this.b.f() && itemstack != null && itemstack.id == Item.RAW_FISH.id && entityhuman.j(this) < 9.0D) {
--itemstack.count;
if (!entityhuman.abilities.canInstantlyBuild) --itemstack.count; // CraftBukkit - if the player can instantly build, don't decrement the item stack
if (itemstack.count <= 0) {
entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, (ItemStack) null);
}