Dominate Monster ignores mind immunity
Posted: Sat Jun 26, 2021 10:12 pm
Description of Bug Experienced:
Dominate works on mind immune things.
Steps to reproduce the Bug:
Cast Dominate Monster on a red dragon or undead on the PGCC.
Expected Result:
Fails due to immunity
Actual Result:
Successfully dominates it
Screenshot(s)
Additional Information/Notes
This looks to be using the EffectCutsceneDominated() which you need to add the following conditional statements to have it work like normal dominate with respect to mind immunity:
if (!GetIsImmune(oTarget, IMMUNITY_TYPE_DOMINATE))
if (!GetIsImmune(oTarget, IMMUNITY_TYPE_MIND_SPELLS))
Dominate works on mind immune things.
Steps to reproduce the Bug:
Cast Dominate Monster on a red dragon or undead on the PGCC.
Expected Result:
Fails due to immunity
Actual Result:
Successfully dominates it
Screenshot(s)
Additional Information/Notes
This looks to be using the EffectCutsceneDominated() which you need to add the following conditional statements to have it work like normal dominate with respect to mind immunity:
if (!GetIsImmune(oTarget, IMMUNITY_TYPE_DOMINATE))
if (!GetIsImmune(oTarget, IMMUNITY_TYPE_MIND_SPELLS))