mirror of
https://github.com/gmod-integration/lua.git
synced 2025-03-15 22:07:34 +00:00
fix: gwsockets auto detect
This commit is contained in:
parent
d77bc64372
commit
581c270446
|
@ -2,7 +2,18 @@
|
||||||
// WebSocket
|
// WebSocket
|
||||||
//
|
//
|
||||||
|
|
||||||
if !file.Exists("bin/gm_gwsockets.dll", "LUA") then
|
local function websocketDLLExist()
|
||||||
|
local files, _ = file.Find("lua/bin/*", "GAME")
|
||||||
|
for k, v in pairs(files) do
|
||||||
|
if (v:find("gwsockets")) then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
if !websocketDLLExist then
|
||||||
timer.Simple(4, function()
|
timer.Simple(4, function()
|
||||||
gmInte.logHint("GWSockets is not installed !, Syncronize feature will not work !")
|
gmInte.logHint("GWSockets is not installed !, Syncronize feature will not work !")
|
||||||
gmInte.logHint("Please install it from https://github.com/FredyH/GWSockets/releases")
|
gmInte.logHint("Please install it from https://github.com/FredyH/GWSockets/releases")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user