Fixed mutes being checked regardless of module mode (refs #61)

This commit is contained in:
Timo Smit 2018-02-16 11:59:20 +01:00
parent 30750d7062
commit 6a3459d988

View file

@ -64,6 +64,7 @@ end
events.handle("onClientConnectAttempt", admin.onClientConnectAttempt)
function admin.onClientConnect(clientId, firstTime, isBot)
if settings.get("g_standalone") ~= 0 and settings.get("db_type") ~= "none" then
local guid = et.Info_ValueForKey(et.trap_GetUserinfo(clientId), "cl_guid")
local player = db.getPlayer(guid)
@ -76,6 +77,7 @@ function admin.onClientConnect(clientId, firstTime, isBot)
end
end
end
end
events.handle("onClientConnect", admin.onClientConnect)
function admin.onClientDisconnect(clientId)