parent
60cbd636e6
commit
f93f2bfca6
|
@ -1423,7 +1423,7 @@ export class ExpBalanceModifier extends PersistentModifier {
|
|||
}
|
||||
|
||||
getMaxStackCount(scene: BattleScene): integer {
|
||||
return 5;
|
||||
return 4;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -867,8 +867,11 @@ export class GameData {
|
|||
const ret: PersistentModifierData[] = [];
|
||||
if (v === null)
|
||||
v = [];
|
||||
for (let md of v)
|
||||
for (let md of v) {
|
||||
if(md?.className === 'ExpBalanceModifier') // Temporarily limit EXP Balance until it gets reworked
|
||||
md.stackCount = Math.min(md.stackCount, 4);
|
||||
ret.push(new PersistentModifierData(md, player));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue