diff --git a/resources/lang/en.json b/resources/lang/en.json index 77e6b24b5..0897c7718 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -277,7 +277,11 @@ "waiting": "Waiting for players...", "random_spawn": "Random spawn", "start": "Start Game", - "host_badge": "Host" + "host_badge": "Host", + "assigned_teams": "Assigned Teams", + "empty_teams": "Empty Teams", + "empty_team": "Empty", + "remove_player": "Remove {{username}}" }, "team_colors": { "red": "Red", diff --git a/src/client/HostLobbyModal.ts b/src/client/HostLobbyModal.ts index ccb01843c..9ace197cf 100644 --- a/src/client/HostLobbyModal.ts +++ b/src/client/HostLobbyModal.ts @@ -25,6 +25,7 @@ import { import { generateID } from "../core/Util"; import "./components/baseComponents/Modal"; import "./components/Difficulties"; +import "./components/LobbyTeamView"; import "./components/Maps"; import { JoinLobbyEvent } from "./Main"; import { renderUnitTypeOptions } from "./utilities/RenderUnitTypeOptions"; @@ -554,27 +555,13 @@ export class HostLobbyModal extends LitElement { } -