From f6b7219d6c0e2ab1b7b23f87496b04167fa7737c Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Mon, 21 Aug 2017 22:09:34 -0400 Subject: Hotfix around garry's retardation --- gamemode/core/mapstich/cl_mapstich.lua | 5 +++++ gamemode/core/mapstich/sv_mapstich.lua | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'gamemode/core/mapstich') diff --git a/gamemode/core/mapstich/cl_mapstich.lua b/gamemode/core/mapstich/cl_mapstich.lua index 65a5208..e1e5fcc 100644 --- a/gamemode/core/mapstich/cl_mapstich.lua +++ b/gamemode/core/mapstich/cl_mapstich.lua @@ -10,3 +10,8 @@ hook.Add("Think","artery_checklevelchange",function() net.SendToServer() end end) + +net.Receive("art_sendtoserver",function() + local where = net.ReadString() + LocalPlayer():ConCommand("connect " .. where) +end) diff --git a/gamemode/core/mapstich/sv_mapstich.lua b/gamemode/core/mapstich/sv_mapstich.lua index 7a90189..bd671bd 100644 --- a/gamemode/core/mapstich/sv_mapstich.lua +++ b/gamemode/core/mapstich/sv_mapstich.lua @@ -5,6 +5,7 @@ local q = nrequire("core/database/sv_queries.lua") print("Hello from sv_mapstich.lua") util.AddNetworkString("art_zonechange") +util.AddNetworkString("art_sendtoserver") local dontupdatedisconnect = {} @@ -60,7 +61,11 @@ net.Receive("art_zonechange",function(len,ply) print("fquery was", fquery) print("Running query:",qc) MySQLite.query(fquery,function(data) - ply:ConCommand("connect " .. zone.toserver) + --Holy shit fuck garry for breaking this + --ply:ConCommand("connect " .. zone.toserver) + net.Start("art_sendtoserver") + net.WriteString(zone.toserver) + net.Send(ply) end,function(err,sql) print("Query error:") print("Query",sql) -- cgit v1.2.3-70-g09d2