mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-20 15:22:19 +02:00
Update src/data/move.ts
Removed default value in constructor due to it having become redundant Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
parent
9848fd6e81
commit
4c2b621510
@ -1869,7 +1869,7 @@ export class AddSubstituteAttr extends MoveEffectAttr {
|
|||||||
/** Whether the damage taken should be rounded up (Shed Tail rounds up) */
|
/** Whether the damage taken should be rounded up (Shed Tail rounds up) */
|
||||||
private roundUp: boolean;
|
private roundUp: boolean;
|
||||||
|
|
||||||
constructor(hpCost: number = 0.25, roundUp: boolean) {
|
constructor(hpCost: number, roundUp: boolean) {
|
||||||
super(true);
|
super(true);
|
||||||
|
|
||||||
this.hpCost = hpCost;
|
this.hpCost = hpCost;
|
||||||
|
Loading…
Reference in New Issue
Block a user