From e433a1f343e3022f0bf36346cef77b663650840e Mon Sep 17 00:00:00 2001 From: Linventif Date: Fri, 28 Jun 2024 18:46:03 +0000 Subject: [PATCH] fix: gwsockets detection --- lua/gmod_integration/server/sv__websocket.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/gmod_integration/server/sv__websocket.lua b/lua/gmod_integration/server/sv__websocket.lua index a75e7cd..2382d80 100644 --- a/lua/gmod_integration/server/sv__websocket.lua +++ b/lua/gmod_integration/server/sv__websocket.lua @@ -13,7 +13,7 @@ local function websocketDLLExist() return false end -if !websocketDLLExist then +if !websocketDLLExist() then timer.Simple(4, function() gmInte.logHint("GWSockets is not installed !, Syncronize feature will not work !") gmInte.logHint("Please install it from https://github.com/FredyH/GWSockets/releases")