Fix incorrect method names missed during update. Fixes BUKKIT-2653

A couple method names were changed between 1.3.2 and 1.4.2 but were missed
in the update. One of these affects being able to enchant bows and the
other is used for updating player animations while firing.
Dieser Commit ist enthalten in:
h31ix 2012-10-28 02:28:53 -04:00 committet von EvilSeph
Ursprung 11d65171cd
Commit 788e9e84cf

Datei anzeigen

@ -78,7 +78,7 @@ public class ItemBow extends Item {
return 72000; return 72000;
} }
public EnumAnimation b(ItemStack itemstack) { public EnumAnimation d_(ItemStack itemstack) {
return EnumAnimation.e; return EnumAnimation.e;
} }
@ -90,7 +90,7 @@ public class ItemBow extends Item {
return itemstack; return itemstack;
} }
public int b() { public int c() {
return 1; return 1;
} }
} }