More Survival Tools Mod not working

This mod is not included in the main download of the game… Did you perhaps get this from @TheGoatgod’s mod compilation or from the launcher?

If you got this from TheGoatgod’s compilation, download it again, it should be fixed with this commit.

For users with the same problem with not (yet) updated mods, make changes similar to the linked commit:
Replace

"type": "CONTAINER",
"category": [...],

with

"type": "GENERIC",
"category": "container"

remove

"rigid": [...],
"contains": [...],

and add this instead:

"pocket_data": [ {
    "pocket_type": "CONTAINER",
    "rigid": ['rigid' VALUE FROM BEFORE],
    "max_contains_volume": "['contains' VALUE FROM BEFORE]",
    "max_contains_weight": "[CHOOSE REASONABLE WEIGHT THAT THE CONTAINER CAN HOLD]"
} ],

Don’t forget to replace the text between (and including) the square brackets [] with the correlating values.

You may get a faster answer if you post questions/errors like this in the topic of the related mod or by opening a github issue on the github of that mod.

1 Like