Fix token stack count conflicting

This commit is contained in:
Flashfyre 2024-02-28 11:55:35 -05:00
parent fdff3a549c
commit d5eb20d842
1 changed files with 1 additions and 1 deletions

View File

@ -1800,7 +1800,7 @@ export abstract class EnemyPersistentModifier extends PersistentModifier {
}
getMaxStackCount(scene: BattleScene): integer {
return this.type.tier ? 1 : 5;
return 5;
}
}