error item

newsky

Farmhand

I would like to know how to fix this part.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(T)Shears'. This will likely result in an error item.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(F)BirdHouse'. This will likely result in an error item.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(BC)104'. This will likely result in an error item.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(T)Shears'. This will likely result in an error item.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(F)BirdHouse'. This will likely result in an error item.
17:49:52WARNgameThe StardewValley.Object constructor was called with qualified item ID '(BC)104'. This will likely result in an error item.

It just happened at the beginning of the month. I think it's becouse of some mod but I don't know which one.
 

honeymochi

Greenhorn
Hi! I took a look at your SMAPI log, and I believe that the culprit is the yandere Elliott expansion. The item types and IDs are labelled incorrectly in the mail.json file, which causes SMAPI to generate errors since it can't find the items the mod is referencing. Not to worry! It just needs a few quick fixes.

See here. If we search for the items that the console is warning us about, it looks like this:

"Type": "Object",
"Index": "(T)Shears",
"Stack": 1

"Type": "Object",
"Index": "(F)BirdHouse",
"Stack": 1

"Type": "Object",
"Index": "(BC)104",
"Stack": 2

It should look more like this:

"Type": "Tool",
"Name": "Shears",
"Stack": 1

"Type": "Furniture",
"Index": "(F)BirdHouse",
"Stack": 1

"Type": "BigCraftable",
"Name": "Heater",
"Stack": 2

You can add these fixes yourself, or you can extract my edited file into the MFM folder for the yandere Elliott expansion and overwrite the original mail.json file. I tested this fix on my own save file, and I'm not getting any errors anymore. Hope this helps—have fun!

EDIT (15/06/2025): Funnily enough, 2 days after I posted this, I was notified that the mod had been updated with additional content. However, the warnings persist, so you'll still have to edit the mail.json file if you want to remove them. I've updated the .zip file to reflect the most recent changes.
 

Attachments

Last edited:
Top