From 3cc9e622d7f18e1852a7c9c7354714a2c9694941 Mon Sep 17 00:00:00 2001 From: Dunkel <7890309+DarkView@users.noreply.github.com> Date: Sun, 26 Jan 2025 20:32:26 +0100 Subject: [PATCH] Properly switch to end when testing was just loaded --- src/app/testing/testing.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/testing/testing.component.ts b/src/app/testing/testing.component.ts index a6dd403..5378a3f 100644 --- a/src/app/testing/testing.component.ts +++ b/src/app/testing/testing.component.ts @@ -124,6 +124,8 @@ export class TestingComponent implements AfterViewInit { this.matchData.roundPhase = "combat"; } else if (this.matchData.roundPhase == "combat") { this.matchData.roundPhase = "end"; + } else if (this.matchData.roundPhase == "LOBBY") { + this.matchData.roundPhase = "end"; } else { this.matchData.roundPhase = "shopping"; }