diff --git a/lua/entities/gmod_track_platform/cl_init.lua b/lua/entities/gmod_track_platform/cl_init.lua index 6b60164..b64d5a7 100644 --- a/lua/entities/gmod_track_platform/cl_init.lua +++ b/lua/entities/gmod_track_platform/cl_init.lua @@ -352,8 +352,8 @@ function ENT:Think() end -- Move pedestrian - local speed = 256 - if distance > 1048576--[[1024]] then speed = 512 end + local speed = 150 + if distance > 1048576--[[1024]] then speed = 256 end v.ent:SetPos(v.ent:GetPos() + targetDir*math.min(threshold,speed*self.DeltaTime)) -- Rotate pedestrian v.ent:SetAngles(targetDir:Angle() + Angle(0,180,0))