Skip to content

Commit a2ea4c0

Browse files
committed
linting #2829
1 parent 0e1b7c2 commit a2ea4c0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/creature.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1480,15 +1480,15 @@ export class Creature {
14801480
}
14811481
}
14821482

1483-
// Usual Buff/Debuff
1484-
if (typeof value == 'number') {
1485-
this.stats[key] += value;
1486-
}
1487-
if (key == 'movement' && !(buff instanceof Drop)) {
1488-
// Only restore movement points for effects, not drops
1489-
// Drops have their own explicit restoration logic in drop.ts
1490-
this.remainingMove += value;
1491-
}
1483+
// Usual Buff/Debuff
1484+
if (typeof value == 'number') {
1485+
this.stats[key] += value;
1486+
}
1487+
if (key == 'movement' && !(buff instanceof Drop)) {
1488+
// Only restore movement points for effects, not drops
1489+
// Drops have their own explicit restoration logic in drop.ts
1490+
this.remainingMove += value;
1491+
}
14921492

14931493
// Boolean Buff/Debuff
14941494
if (typeof value == 'boolean') {

0 commit comments

Comments
 (0)