--[[ Allow admins to develop the world in-game. ]] local e = {} if SERVER then util.AddNetworkString("art_enable_editor") end --Enable editor mode e.Enabled = false if CLIENT then net.Receive("art_enable_editor",function() e.Enabled = true end) end concommand.Add("artery_enable_editor",function(ply,cmd,args) if not ply:IsAdmin() then return end net.Start("art_enable_editor") net.Broadcast() e.Enabled = true end) return e