Chance enemy buff modifier stack count back to 5

This commit is contained in:
Flashfyre 2023-10-29 18:01:18 -04:00
parent 98cade0835
commit d503834758

View File

@ -1236,7 +1236,7 @@ export abstract class EnemyPersistentModifer extends PersistentModifier {
} }
getMaxStackCount(): number { getMaxStackCount(): number {
return 1; return 5;
} }
} }