Solved Game keeps crashing :( help

Emily888

Newcomer
Usually around the same time at night my whole screen freezes but time still continues but doesn't pass out or stop at 2am. Tools and warping still work but can leave the screen.
 

Attachments

Mizzion

Tiller
Here's a link to the log file SMAPI Log. I had to edit it so the site would parse it.

I think your main issue is this error here.

Code:
'Child Age Up' has multiple patches which load the 'Characters/Bonnie' asset at the same time (Child Age Up > FirstChild Characters Normally Auto NoApron #2, Child Age Up > SecondChild Characters Auto Apron #2). None will be applied. You should report this to the content pack author.
You can't have mods that use the same Load function of CP. So CP isn't loading either, which then gets you to the second issue which is actually causing your game to crash

Code:
An error occurred in the base update loop: Microsoft.Xna.Framework.Content.ContentLoadException: The content file was not found. ---> FileNotFoundException: Could not find file 'C:\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Content\Characters\Bonnie.xnb'.
The game keeps looking for the bonnie.xnb file for ever until the game finally gives up and crashes.
 

Emily888

Newcomer
Here's a link to the log file SMAPI Log. I had to edit it so the site would parse it.

I think your main issue is this error here.

Code:
'Child Age Up' has multiple patches which load the 'Characters/Bonnie' asset at the same time (Child Age Up > FirstChild Characters Normally Auto NoApron #2, Child Age Up > SecondChild Characters Auto Apron #2). None will be applied. You should report this to the content pack author.
You can't have mods that use the same Load function of CP. So CP isn't loading either, which then gets you to the second issue which is actually causing your game to crash

Code:
An error occurred in the base update loop: Microsoft.Xna.Framework.Content.ContentLoadException: The content file was not found. ---> FileNotFoundException: Could not find file 'C:\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Content\Characters\Bonnie.xnb'.
The game keeps looking for the bonnie.xnb file for ever until the game finally gives up and crashes.
Thank you!! I couldn't get it to upload to smapi. Many thanks for solving my issue!!
 

Davie1809

Newcomer
I'm late to the party but I'm having the same issue, whenever it rains, at night my screen freezes. Maybe I'm missing something from this post, but I don't understand how to actually solve it? I do have the unofficial update for ChildToNPC and the latest versions of all mods (I only have mods that are needed for Child Age Up and obv SMAPI). Any help would be appreciated, thanks!
 
Top