diff --git a/client/functions/points.lua b/client/functions/points.lua index ca70251..dd8d887 100644 --- a/client/functions/points.lua +++ b/client/functions/points.lua @@ -106,15 +106,6 @@ Points.Remove = function(pointId) end exports('RemovePoint', Points.Remove) -Points.RemoveAllPoints = function() - for k, point in pairs(RegisteredPoints) do - point.Remove() - end - - RegisteredPoints = {} -end -exports('RemoveAllPoints', Points.RemoveAllPoints) - Points.GetAllPoints = function() return RegisteredPoints end