Update "-if" and "-ifnot" from a single dash to double dash for compatability with the changes to the bnp_make.exe switches.

This commit is contained in:
Gary Preston 2016-01-30 23:41:02 +00:00
parent 2a83b66ac2
commit 4bd7d86c8e

View file

@ -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 ]