Jump to content

Recommended Posts

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!

 

image.png.bf3979e423fa8ba77bf6b614200c6999.png

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!

 

image.png.bf3979e423fa8ba77bf6b614200c6999.png

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.

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

 

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 by Kodi-Fox
  • Big Ups 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...