You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SummonCopySpell should check if the summon was successful before adding all the triggers.
This causes Echoing Ooze's original copy to double up on all its triggers, because:
Minion clone = template.clone creates two entities with the same IDs.
The summon fails, because, e.g., you have 7 minions.
The triggers are added anyway. Since the clone has the same ID as the original Echoing Ooze, the triggers are still successfully added even though they're not really following the rules.
The text was updated successfully, but these errors were encountered:
SummonCopySpell
should check if the summon was successful before adding all the triggers.This causes Echoing Ooze's original copy to double up on all its triggers, because:
Minion clone = template.clone
creates two entities with the same IDs.The text was updated successfully, but these errors were encountered: