DoubleDoorDevelopment / CurseModpackDownloader

A java based Curse modpack downloader/installer. It can download Curse packs with mods that have been archived too!
https://cursemeta.dries007.net/
European Union Public License 1.1
16 stars 1 forks source link

Add feature to ignore certain mods #6

Open PureSpider opened 6 years ago

PureSpider commented 6 years ago

There are some packs that have client side only mods that crash the server when used on the server side. For this, it would be useful to have an option to ignore certain mods.

dries007 commented 6 years ago

I'll add this, but please tell mod authors to include the correct FMLSide in the manifest for example like this:

jar { 
    manifest {
        attributes 'ModSide': 'CLIENT'
    }
}

or in the @Mod annotation in more recent Forge version (there is a clientSideOnly property you can set to True.