Crashing on Game Load

Hey all, just got Satisfactory re-installed with my mods, and I'm crashing while trying to load a new game. The game works and loads in fine with all mods disabled, so I figure it's one of them causing it. But before I go through the process of enabling/disabling my nearly 300 mods, I'd thought I'd ask and see if anyone had any ideas, first. It's not unusual for me to run so many mods, and this amount worked before I had to re-install everything.
Solution:
For anyone else who comes across this issue, it was the Challenging Milestones Mod from Andre.
Jump to solution
12 Replies
FICSIT-Fred
FICSIT-Fred3w ago
SMM Version: 3.0.3
SML Version: 3.11.3
Installed Mods: 226
Game: WindowsClient CL 433351 from Epic Games
Path: `c:\Program Files\Epic Games\Satisfactory`
Command Line: cmd /C start com.epicgames.launcher://apps/CrabEA?action=launch&silent=true
SMM Version: 3.0.3
SML Version: 3.11.3
Installed Mods: 226
Game: WindowsClient CL 433351 from Epic Games
Path: `c:\Program Files\Epic Games\Satisfactory`
Command Line: cmd /C start com.epicgames.launcher://apps/CrabEA?action=launch&silent=true
-# Responding to Key Details for SMMDebug-2025-11-05-20-28-59.zip triggered by @Aleanni Chalaia
Robb
Robb3w ago
seems like one of the mods has an invalid research tree and SML is failing to register it properly as a result this will expedite the disabling/enabling process: >debugmods
FICSIT-Fred
FICSIT-Fred3w ago
Follow this flowchart to troubleshoot issues caused by mods (crashes, unexpected behavior, etc.). More information can be found on the docs: https://docs.ficsit.app/satisfactory-modding/latest/faq.html#_how_can_i_troubleshoot_crash_issues
Aleanni Chalaia
Aleanni ChalaiaOP3w ago
Thanks, Robb. I'm gonna employ that method as I do for Skyrim/Fallout. Just thought I'd see if anyone had any thoughts, first. I shall get busy tomorrow!
Robb
Robb3w ago
Yup. By asking here you've got it narrowed down to "probably a mod that adds a research tree"
Aleanni Chalaia
Aleanni ChalaiaOP3w ago
That's completely fair. It's a process we must all go through
Solution
Aleanni Chalaia
For anyone else who comes across this issue, it was the Challenging Milestones Mod from Andre.
AndreAquila
AndreAquila2w ago
Robb, this mod has only some json files for contentlib. Do you what in them can be causing this crash? https://i.imgur.com/VFCHVXt.png
Imgur
AndreAquila
AndreAquila2w ago
//Game/FactoryGame/Schematics/Research/AlienTech_RS/Research_Alien_BoosterFuel.Research_Alien_BoosterFuel_C
{
"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Item.json",
"Name": "Alien Power Matrix",
"Type": "MAM",
"VisualKit": "Research_Alien_BoosterFuel_C",
"Description": "",
"Cost": [{
"Item": "Desc_SingularityCell",
"Amount": 150
},
{
"Item": "Desc_CrystalShard",
"Amount": 300
},
{
"Item": "Desc_SAMFluctuator",
"Amount": 1500
}],
"Category": "SC_Organisation_C",
"SubCategories": [],
"MenuPriority": 0.0,
"Time": 3.0,
"Tier": 0,
"InventorySlotsToGive": 0,
"ArmSlotsToGive": 0,
"Recipes": ["Recipe_AlienPowerFuel_C"],
"DependsOn": [],
"ItemsToGive": [],
"ClearSubCategories": true,
"ClearCost": true,
"ClearRecipes": true,
"ClearDeps": false,
"ClearItemsToGive": false
}
//Game/FactoryGame/Schematics/Research/AlienTech_RS/Research_Alien_BoosterFuel.Research_Alien_BoosterFuel_C
{
"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Item.json",
"Name": "Alien Power Matrix",
"Type": "MAM",
"VisualKit": "Research_Alien_BoosterFuel_C",
"Description": "",
"Cost": [{
"Item": "Desc_SingularityCell",
"Amount": 150
},
{
"Item": "Desc_CrystalShard",
"Amount": 300
},
{
"Item": "Desc_SAMFluctuator",
"Amount": 1500
}],
"Category": "SC_Organisation_C",
"SubCategories": [],
"MenuPriority": 0.0,
"Time": 3.0,
"Tier": 0,
"InventorySlotsToGive": 0,
"ArmSlotsToGive": 0,
"Recipes": ["Recipe_AlienPowerFuel_C"],
"DependsOn": [],
"ItemsToGive": [],
"ClearSubCategories": true,
"ClearCost": true,
"ClearRecipes": true,
"ClearDeps": false,
"ClearItemsToGive": false
}
Robb
Robb2w ago
it looks like you skipped the json schema validation step. for this file at least https://docs.ficsit.app/contentlib/latest/Tutorials/Setup.html ah, you didn't have the correct schema line mentioned at the top, but once you swap it there are only a couple warnings can you cause the crash on your side as well? the only thing that immediately looks off is the fact that you have lots of fields mentioned that you have no intention of modifying (ex. you have InventorySlotsToGive 0, better to just exclude the field)
AndreAquila
AndreAquila2w ago
They are all automatically generated jsons with the multipliers, that i did at the time.
Will fix those warnings asap. But I couldn't reproduce the crash here.

Did you find this page helpful?