From 0f4c8bdaac270de3afcb0ed2d7351fe0c0352110 Mon Sep 17 00:00:00 2001 From: Linventif Date: Sun, 6 Jul 2025 22:25:45 +0000 Subject: [PATCH] fix: add dllExists handling in publicConfig net message --- lua/gmod_integration/core/net/cl_net.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/gmod_integration/core/net/cl_net.lua b/lua/gmod_integration/core/net/cl_net.lua index 24260f0..6f86907 100644 --- a/lua/gmod_integration/core/net/cl_net.lua +++ b/lua/gmod_integration/core/net/cl_net.lua @@ -14,6 +14,7 @@ local netReceive = { gmInte.config = table.Merge(gmInte.config, data.config) gmInte.version = data.other.version gmInte.serverOS = data.other.serverOS + gmInte.dllExists = data.other.dllExists if !gmInte.dllExists then gmInte.openDllInstall() end gmInte.loadTranslations() if gmInte.config.clientBranch != "any" && gmInte.config.clientBranch != BRANCH then gmInte.openWrongBranchPopup() end