Made changing spotlight change the round to clear waypoints

This commit is contained in:
WBHarry 2025-08-07 23:50:53 +02:00
parent 5045801475
commit 978990689e

View file

@ -88,7 +88,10 @@ export default class DhCombatTracker extends foundry.applications.sidebar.tabs.C
} }
} }
await this.viewed.update({ turn: this.viewed.turn === toggleTurn ? null : toggleTurn }); await this.viewed.update({
turn: this.viewed.turn === toggleTurn ? null : toggleTurn,
round: this.viewed.round + 1
});
await combatant.update(update); await combatant.update(update);
} }