KSA v2026.2.34.3656 introduced a local mods folder at Documents/My Games/Kitten Space Agency/mods/.
Mods placed there are auto-discovered by the game.
KittenExtensions currently only looks in Content/ when resolving mod paths. In Patcher.cs line 115:
var tomlPath = Path.Combine("Content", modEntry.Id, "mod.toml");
This causes a DirectoryNotFoundException for any mod that only exists in the local mods folder and not in the "Content" folder.
The game's own code checks both locations with a fallback pattern.
A similar issue StarMapLoader/StarMap#64 and fix was submitted to StarMap: StarMapLoader/StarMap#65
KSA v2026.2.34.3656 introduced a local mods folder at
Documents/My Games/Kitten Space Agency/mods/.Mods placed there are auto-discovered by the game.
KittenExtensions currently only looks in
Content/when resolving mod paths. InPatcher.csline 115:This causes a DirectoryNotFoundException for any mod that only exists in the local mods folder and not in the "Content" folder.
The game's own code checks both locations with a fallback pattern.
A similar issue StarMapLoader/StarMap#64 and fix was submitted to StarMap: StarMapLoader/StarMap#65