Skip to content

Commit

Permalink
ok that status was important
Browse files Browse the repository at this point in the history
  • Loading branch information
xanunderscore committed Jul 12, 2024
1 parent 875b77d commit 8a2ef82
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public enum SID : uint
{
// frozen adds always get both 3944 and 3445, no idea what the difference is. i just picked my favorite
Frozen = 3944, // none->_Gen_RorrlohTeh/_Gen_QorrlohTeh1, extra=0x0
Frozen2 = 3445
}

class FrostingFracas(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.FrostingFracas));
Expand Down Expand Up @@ -64,7 +65,7 @@ public override void OnCastFinished(Actor caster, ActorCastInfo spell)

public override void OnStatusGain(Actor actor, ActorStatus status)
{
if ((SID)status.ID is SID.Frozen && _casters.ContainsKey(actor))
if ((SID)status.ID is SID.Frozen or SID.Frozen2 && _casters.ContainsKey(actor))
{
_casters[actor] = true;
_numFrozen += 1;
Expand Down

0 comments on commit 8a2ef82

Please sign in to comment.