Fix arena traps applying twice in double battles

This commit is contained in:
Flashfyre 2024-04-02 12:00:41 -04:00
parent cb39a4a156
commit 2e728307c3
1 changed files with 1 additions and 1 deletions

View File

@ -2143,7 +2143,7 @@ export class AddArenaTagAttr extends MoveEffectAttr {
private failOnOverlap: boolean;
constructor(tagType: ArenaTagType, turnCount?: integer, failOnOverlap: boolean = false) {
super(true);
super(true, MoveEffectTrigger.POST_APPLY, true);
this.tagType = tagType;
this.turnCount = turnCount;