Skip to content

Ignore & Include lists

R edited this page Jul 7, 2016 · 17 revisions

To ignore a mod during the update/deletion process add it's file name to the MOD_IGNORE_LIST including extension:

S:MOD_IGNORE_LIST <
   myMod.jar
   myBlocks.jar
>

Configs by default are not synced, to include a config file in the sync process add it's file name to the CONFIG_INCLUDE_LIST including extension:

S:CONFIG_INCLUDE_LIST <
   myConfig.cfg
   myClientConfig.cfg
>

To add a custom directory to be synchronized add it's name to the DIRECTORY_INCLUDE_LIST, these directories are evaluated from the base minecraft directory (one step above your mods directory) and will include all files in sub directories below e.g. myCustomDirectory will include myCustomSubDirectory where myCustomDirectory/myCustomSubDirectory will include only myCustomSubDirectory and any child directories:

S:DIRECTORY_INCLUDE_LIST <
   mods
   myCustomDirectory
   myCustomDirectory/myCustomSubDirectory
>