diff --git a/resources/lang/en.json b/resources/lang/en.json index 7c12086a9..37934c1a0 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -127,6 +127,7 @@ "disable_nations": "Disable Nations", "instant_build": "Instant Build", "instant_research": "Instant Research", + "research_all_techs": "Research All Techs", "infinite_gold": "Infinite Gold", "infinite_troops": "Infinite Troops", "disable_nukes": "Disable Nukes", @@ -209,6 +210,7 @@ "disable_nations": "Disable Nations", "instant_build": "Instant Build", "instant_research": "Instant Research", + "research_all_techs": "Research All Techs", "infinite_gold": "Infinite Gold", "infinite_troops": "Infinite Troops", "peace_timer": "Protected Start", diff --git a/src/client/HostLobbyModal.ts b/src/client/HostLobbyModal.ts index f450f89a1..26cac9adf 100644 --- a/src/client/HostLobbyModal.ts +++ b/src/client/HostLobbyModal.ts @@ -54,6 +54,7 @@ export class HostLobbyModal extends LitElement { @state() private infiniteTroops: boolean = false; @state() private instantBuild: boolean = false; @state() private instantResearchHumanOnly: boolean = false; + @state() private researchAllTechs: boolean = false; @state() private lobbyId = ""; @state() private copySuccess = false; @state() private clients: ClientInfo[] = []; @@ -377,6 +378,27 @@ export class HostLobbyModal extends LitElement { + + + +