From bf12f5354bb658f5370317a628f57f851cd6859a Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 26 Mar 2025 15:15:12 -0700 Subject: [PATCH] put game config after updating nuke option --- src/client/HostLobbyModal.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/HostLobbyModal.ts b/src/client/HostLobbyModal.ts index 5108451ed..0356ba357 100644 --- a/src/client/HostLobbyModal.ts +++ b/src/client/HostLobbyModal.ts @@ -371,6 +371,7 @@ export class HostLobbyModal extends LitElement { } private handleDisableNukesChange(e: Event) { this.disableNukes = Boolean((e.target as HTMLInputElement).checked); + this.putGameConfig(); } private async handleDisableNPCsChange(e: Event) {