Fixed pathing issue to hazmat armor texture that appears on the player.

This commit is contained in:
Maxwolf Goodliffe 2014-05-22 21:02:49 -07:00
parent 2627bd6b0b
commit 28b6c601cd

View file

@ -32,7 +32,7 @@ public class ItemHazmat extends ItemArmor implements IAntiPoisonArmor
@Override
public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer)
{
return Reference.PREFIX + Reference.MODEL_DIRECTORY + "hazmat.png";
return Reference.PREFIX + Reference.MODEL_PATH + "hazmat.png";
}
@Override