Skip to content

Commit c582356

Browse files
authored
Change IMC bitmask from OR to XOR
1 parent fcfc724 commit c582356

File tree

1 file changed

+1
-1
lines changed
  • xivModdingFramework/Mods/FileTypes

1 file changed

+1
-1
lines changed

xivModdingFramework/Mods/FileTypes/PMP.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ private static void ValidateOption(PmpStandardOptionJson op)
398398
var opt = group.Options[i] as PmpImcOptionJson;
399399
optionIdx++;
400400

401-
xivImc.AttributeMask |= opt.AttributeMask;
401+
xivImc.AttributeMask ^= opt.AttributeMask;
402402
}
403403
}
404404

0 commit comments

Comments
 (0)