Please provide the following when creating the Ticket:
Game Version number: 1.2.0.66
Modded?: (Yes/No) No
Issue Description:
Please provide IN operator that would allow to check multiple values similar to how it works in Arma 3/SQL/C# new[] {"val1", "val2", "val3"} replacing these
if (damageContext.damageType == EDamageType.COLLISION || damageContext.damageType == EDamageType.FIRE || damageContext.damageType == EDamageType.REGENERATION) return;
with more elegant
if (damageContext.damageType in (EDamageType.COLLISION, EDamageType.FIRE, EDamageType.REGENERATION)) return;