aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core/mapstich/cl_mapstich.lua
blob: 65a520894563c2eada825f94996e126388121444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--[[
	The client constantly cheks to see if we're in a serverchnage zone
]]

hook.Add("Think","artery_checklevelchange",function()
	local z = LocalPlayer():GetCurrentZone()
	--print("looks like i'm in zone",z)
	if z then
		net.Start("art_zonechange")
		net.SendToServer()
	end
end)