I forgot that we weren't loading the texture in a Block class

This commit is contained in:
Alex_hawks 2014-01-05 00:41:08 +08:00
parent 503a2f050c
commit 6ba6f5aa23

View file

@ -107,7 +107,7 @@ public class ItemDust extends ItemBase
break;
}
ResourceLocation textureLocation = new ResourceLocation(iconString);
ResourceLocation textureLocation = new ResourceLocation(iconString.replace(":", ":" + ResonantInduction.ITEM_TEXTURE_DIRECTORY) + ".png");
InputStream inputstream;
try
{