From ac90504395e7bc46461f3f82712f2ab560d0fa37 Mon Sep 17 00:00:00 2001 From: march <106459595+marchc1@users.noreply.github.com> Date: Fri, 18 Jul 2025 19:01:50 -0700 Subject: [PATCH] Somehow fix this?? --- lua/primitive/entities/base.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lua/primitive/entities/base.lua b/lua/primitive/entities/base.lua index 4713b2d..6fe49c3 100644 --- a/lua/primitive/entities/base.lua +++ b/lua/primitive/entities/base.lua @@ -390,10 +390,7 @@ function class:Think() local physobj = self:GetPhysicsObject() - if physobj:IsValid() and not physobj:IsAsleep() and not self or not self:IsValid() then - physobj:SetPos( self:GetPos() ) - physobj:SetAngles( self:GetAngles() ) - physobj:EnableMotion( false ) + if physobj:IsValid() then physobj:Sleep() end end