ashjack Posted September 3, 2012 Posted September 3, 2012 I made a mod for Minecraft 1.2.5, and used ITextureProvider for the blocks only. So I updated my forge successfully, and ITextureProvider doesn't work anymore. I fixed the packages (changed net.minecraft.src.forge to net.minecraftforge). So what do I change it to without having to restart my code? Remember, I only want to change the blocks, because I didn't add ITextureProvider to the items.
Thor597 Posted September 3, 2012 Posted September 3, 2012 implements ITextureProvider is automatically on items and blocks, you just need: public String getTextureFile() { return"/Your/path/to/your/texturefile.png"; } http://i.imgur.com/Hppni.png[/img]
Recommended Posts