#Only mods from workshop appear!

1 messages · Page 1 of 1 (latest)

compact nebula
#

I tried seeing if the plugin in the plugins folder of the mod being missing was the problem, so i made a plugin yet it still didn't work.
I also put the mod in the file where workshop mods are, but it also didn't work.

lusty summit
#

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

Rain World Modding

Each mod in Downpour is stored as a subfolder inside the RainWorld_Data/StreamingAssets/mods directory. This subfolder contains all metadata, file modifications and overrides, assets, and code modules (DLL files) that define the mod's contents and functionality.

compact nebula
#

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" ]
}

lusty summit
#

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" ]
}```