mirror of
https://github.com/gmod-integration/lua.git
synced 2025-08-03 01:12:59 +00:00
fix: correct debug config check in openDllInstall function
This commit is contained in:
parent
85f77106b6
commit
cd02232cf2
|
@ -451,7 +451,7 @@ end
|
||||||
local alreadySkipDll = false
|
local alreadySkipDll = false
|
||||||
function gmInte.openDllInstall()
|
function gmInte.openDllInstall()
|
||||||
if !LocalPlayer():gmIntIsAdmin() then return end
|
if !LocalPlayer():gmIntIsAdmin() then return end
|
||||||
if alreadySkipDll || !gmInte.config.debug then return end
|
if alreadySkipDll || gmInte.config.debug then return end
|
||||||
alreadySkipDll = true
|
alreadySkipDll = true
|
||||||
local frame = vgui.Create("DFrame")
|
local frame = vgui.Create("DFrame")
|
||||||
frame:SetSize(400, 250)
|
frame:SetSize(400, 250)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user