DeadlyFox Posted January 7 Share Posted January 7 When I am trying to craft a character specific item (the microphone) for my character mod Emily, the rocks that are being used for the recepie are not being counted (I dont remember having this problem in the past). If anyone could help that would be awesome! Link to comment https://forums.kleientertainment.com/forums/topic/169428-need-helpa-character-crafting-doesnt-work-anymore/ Share on other sites More sharing options...
Haruhi Kawaii Posted January 9 Share Posted January 9 On 1/7/2026 at 6:49 PM, DeadlyFox said: When I am trying to craft a character specific item (the microphone) for my character mod Emily, the rocks that are being used for the recepie are not being counted (I dont remember having this problem in the past). If anyone could help that would be awesome! Have you tried all possible cases yet? Disable all client-side mods, check any suspicious code sections, and attach your mod’s ZIP file here if you can’t resolve it on your own. Link to comment https://forums.kleientertainment.com/forums/topic/169428-need-helpa-character-crafting-doesnt-work-anymore/#findComment-1848287 Share on other sites More sharing options...
DeadlyFox Posted January 11 Author Share Posted January 11 Yeah, I have tried everything I could think of and I also checked the code for anything that might cause it but at least I didn't see anything suspicious here is the download for the mod: https://www.mediafire.com/file/q7rg30axswj58ij/emily.rar/file Link to comment https://forums.kleientertainment.com/forums/topic/169428-need-helpa-character-crafting-doesnt-work-anymore/#findComment-1848452 Share on other sites More sharing options...
Kodi-Fox Posted January 11 Share Posted January 11 (edited) Problem: Ingredient names had incorrect letter casing. In Don't Starve Together, all internal prefab names are lowercase. The recipe used "Rocks" with a capital letter, but the game looks for "rocks" in lowercase. That's why it couldn't detect the rocks in your inventory. You should fix it in modmain.lua: - Ingredient("Rocks", 3) → Ingredient("rocks", 3) - Ingredient("BeefaloWool", 5) → Ingredient("beefalowool", 5) Edited January 11 by Kodi-Fox 1 Link to comment https://forums.kleientertainment.com/forums/topic/169428-need-helpa-character-crafting-doesnt-work-anymore/#findComment-1848485 Share on other sites More sharing options...
DeadlyFox Posted January 12 Author Share Posted January 12 Oh I see, thanks a lot! ngl i don't think I would had found out that this was the problem on my own. T0T Link to comment https://forums.kleientertainment.com/forums/topic/169428-need-helpa-character-crafting-doesnt-work-anymore/#findComment-1848508 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now