From a851ff55de03946fff858100e0af2431135d4ee6 Mon Sep 17 00:00:00 2001 From: Redox Date: Sun, 17 Nov 2024 22:56:54 +0100 Subject: [PATCH] Fix startup error --- lua/entities/gmod_wire_expression2/core/custom/prop.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/entities/gmod_wire_expression2/core/custom/prop.lua b/lua/entities/gmod_wire_expression2/core/custom/prop.lua index 899ec982d2..a3905d45db 100644 --- a/lua/entities/gmod_wire_expression2/core/custom/prop.lua +++ b/lua/entities/gmod_wire_expression2/core/custom/prop.lua @@ -1146,16 +1146,15 @@ e2function void entity:ragdollFreeze(isFrozen) end __e2setcost(5) - e2function angle entity:ragdollGetAng() if not ValidAction(self, this) then return end local phys = this:GetPhysicsObject() return phys:IsValid() and phys:GetAngles() or self:throw("Tried to use entity without physics", Angle()) +end __e2setcost(150) - e2function void entity:ragdollSetPos(vector pos) if not ValidAction(self, this, "pos") then return end