diff options
Diffstat (limited to 'gamemode/core/mapstich/cl_mapstich.lua')
| -rw-r--r-- | gamemode/core/mapstich/cl_mapstich.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gamemode/core/mapstich/cl_mapstich.lua b/gamemode/core/mapstich/cl_mapstich.lua index 6f85eeb..dbd332d 100644 --- a/gamemode/core/mapstich/cl_mapstich.lua +++ b/gamemode/core/mapstich/cl_mapstich.lua @@ -2,6 +2,7 @@ The client constantly cheks to see if we're in a serverchnage zone ]] if not nrequire("sh_zones.lua") then return end +local log = nrequire("log.lua") hook.Add("Think","artery_checklevelchange",function() local z pcall(function() @@ -18,5 +19,6 @@ end) net.Receive("art_sendtoserver",function() local where = net.ReadString() - LocalPlayer():ConCommand("connect " .. where) + log.debug("Being sent to another server:" .. where) + --LocalPlayer():ConCommand("connect " .. where) end) |
