From 4bd7d86c8eb479932b9fc93104511d22fb4d480c Mon Sep 17 00:00:00 2001 From: Gary Preston Date: Sat, 30 Jan 2016 23:41:02 +0000 Subject: [PATCH] Update "-if" and "-ifnot" from a single dash to double dash for compatability with the changes to the bnp_make.exe switches. --- workspace/projects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace/projects.py b/workspace/projects.py index 8c9a006..f364c16 100644 --- a/workspace/projects.py +++ b/workspace/projects.py @@ -338,11 +338,11 @@ ICCharacter["Packages"] += [ [ "characters_shapes", [ ] ] ] ICCharacter["Packages"] += [ [ "characters_animations", [ ] ] ] ICCharacterMapsConditions = [ ] for armor in ICCharacterArmors: - ICCharacterMapsConditions += [ "-ifnot" ] + ICCharacterMapsConditions += [ "--ifnot" ] ICCharacterMapsConditions += [ armor + "*" ] ICCharacter["Packages"] += [ [ "characters_maps_hr", [ "characters_maps_hr.bnp" ] + ICCharacterMapsConditions, "characters.hlsbank" ] ] for armor in ICCharacterArmors: - ICCharacter["Packages"] += [ [ "characters_maps_hr", [ "characters_maps_" + armor + "_hr.bnp", "-if", armor + "*" ], "characters.hlsbank" ] ] + ICCharacter["Packages"] += [ [ "characters_maps_hr", [ "characters_maps_" + armor + "_hr.bnp", "--if", armor + "*" ], "characters.hlsbank" ] ] ICCharacter["Refs"] = [ ] InstallClientData += [ ICCharacter ]