If you get an error message that looks like the screen above, you have a capital letter in an unlocalized name.
Head back to your main Mod java file. For example, SwordMod.java for Forge Your Sword or ArmorMod.java for Magic Armor.
You need to find where you are registering your mod's items and blocks and ensure that everything inside of quotes is lowercase.
For example:
Codakid.registerItem(mySword, "my_Sword"); should say Codakid.registerItem(mySword, "my_sword");
OR
Codakid.registerItem(myHelmet, "my_Helmet"); should say Codakid.registerItem(myHelmet, "my_helmet");
That should fix the issue.
If you are still stuck, send your code to us by following this article.
Comments
0 comments
Please sign in to leave a comment.