fix: remove excludePatches check

This commit is contained in:
oSumAtrIX
2022-07-10 13:58:21 +02:00
parent 125fa06ca6
commit eb83cabfff

View File

@ -25,7 +25,7 @@ fun Patcher.addPatchesFiltered() {
val args = MainCommand.args.sArgs?.pArgs!!
if (excludePatches && args.excludedPatches.contains(patchName)) {
if (args.excludedPatches.contains(patchName)) {
logger.info("$prefix: Explicitely excluded")
return@patch
} else if (!patch.include && !args.includedPatches.contains(patchName)) {