File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff 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' ) {
You can’t perform that action at this time.
0 commit comments