ExterminatorJeff / UndergroundBiomes

Underground Biomes Mod for Minecraft
15 stars 6 forks source link

Fix calls to undefined ItemStack.getItemName method. #12

Closed Chekote closed 10 years ago

Chekote commented 10 years ago

UndergroundBIomes.java was attempting to call a method "getItemName" on instances of ItemStack. This method does not exist. I assume it was changed in the recent version of forge, and have replaced all instances of this with a call to "getDisplayName" instead.

grompe commented 10 years ago

Ah, it got changed to getUnlocalizedName() but that works as well. Thanks!