fix: add dllExists handling in publicConfig net message

This commit is contained in:
Linventif 2025-07-06 22:25:45 +00:00
parent 4b453bfde3
commit 0f4c8bdaac

View File

@ -14,6 +14,7 @@ local netReceive = {
gmInte.config = table.Merge(gmInte.config, data.config) gmInte.config = table.Merge(gmInte.config, data.config)
gmInte.version = data.other.version gmInte.version = data.other.version
gmInte.serverOS = data.other.serverOS gmInte.serverOS = data.other.serverOS
gmInte.dllExists = data.other.dllExists
if !gmInte.dllExists then gmInte.openDllInstall() end if !gmInte.dllExists then gmInte.openDllInstall() end
gmInte.loadTranslations() gmInte.loadTranslations()
if gmInte.config.clientBranch != "any" && gmInte.config.clientBranch != BRANCH then gmInte.openWrongBranchPopup() end if gmInte.config.clientBranch != "any" && gmInte.config.clientBranch != BRANCH then gmInte.openWrongBranchPopup() end