fix(combat): keep the busy() re-entrancy guard, split the action-mapping test instead

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Bastian Wagner
2026-08-20 22:38:52 +02:00
parent 0126d1dea1
commit e2f29d5eb6
2 changed files with 21 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ export class CombatPageComponent implements OnInit {
protected async performAction(action: CombatAction): Promise<void> {
const before = this.displayed();
if (!before) {
if (!before || this.busy()) {
return;
}