Posted September 28, 201411 yr My problem: Item shows up as the pink and black error texture. My relevant code: stickHardened = new Item() .setTextureName(MODID+":stickHardened.png") .setCreativeTab(tabInginuity) .setMaxStackSize(64) .setUnlocalizedName(MODID+"_stickHardened") ; GameRegistry.registerItem(stickHardened, "stickHardened"); Have also tried the following: .setTextureName(MODID+":stickHardened") .setTextureName(MODID+"_stickHardened.png") .setTextureName(MODID+"_stickHardened") My relevant paths: src\main\resources\assets\<MODNAME>\lang\en_US.lang (this works fine) src\main\resources\assets\<MODNAME>\textures\items\<MODNAME>\stickHardened.png (does not work) Also tried: src\main\resources\assets\<MODNAME>\textures\items\<MODNAME>\<MODNAME>_stickHardened.png Before you ask, yes, I'm positive I've spelled all my names correctly and with correct capitalization. More info: MCP 9.05 FML 7.10.18.1180 Forge 10.13.0.1180
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.