From 6ba6f5aa230978a7b9f7d43e83696405ed115e73 Mon Sep 17 00:00:00 2001 From: Alex_hawks Date: Sun, 5 Jan 2014 00:41:08 +0800 Subject: [PATCH] I forgot that we weren't loading the texture in a Block class --- src/main/java/resonantinduction/machine/crusher/ItemDust.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/resonantinduction/machine/crusher/ItemDust.java b/src/main/java/resonantinduction/machine/crusher/ItemDust.java index 23d6f4977..5c1cd501e 100644 --- a/src/main/java/resonantinduction/machine/crusher/ItemDust.java +++ b/src/main/java/resonantinduction/machine/crusher/ItemDust.java @@ -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 {