#Only mods from workshop appear!
1 messages · Page 1 of 1 (latest)
Does your mod have a modinfo.json? If it does not, the game wont recognise its a mod and it therfore wont show up. You can find info about making one here: https://rainworldmodding.miraheze.org/wiki/Downpour_Reference/Mod_Directories
Yep! it says this:
{
"id": "RW.Newgen",
"name": "RAIN WORLD: NEW GENERATION",
"version": "1",
"authors": "MatrixDog", "Feara"
"description": "A new generation of slugcats.",
"requirements": [ "slime-cubed.slugbase" ],
"requirements_names": [ "SlugBase" ]
}
Oh i see the problem, the authors section should only be one string. This would be correct i think
{
"id": "RW.Newgen",
"name": "RAIN WORLD: NEW GENERATION",
"version": "1",
"authors": "MatrixDog, Feara",
"description": "A new generation of slugcats.",
"requirements": [ "slime-cubed.slugbase" ],
"requirements_names": [ "SlugBase" ]
}```