From c24ffe8b0a88c964cb679c6b6db6da2d14da6a0b Mon Sep 17 00:00:00 2001 From: Denneisk <20892685+Denneisk@users.noreply.github.com> Date: Tue, 3 Dec 2024 21:23:48 -0500 Subject: [PATCH] Remove return (I forgot to commit this) --- lua/entities/gmod_wire_expression2/core/string.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/entities/gmod_wire_expression2/core/string.lua b/lua/entities/gmod_wire_expression2/core/string.lua index f873742e9c..2cf3c6872c 100644 --- a/lua/entities/gmod_wire_expression2/core/string.lua +++ b/lua/entities/gmod_wire_expression2/core/string.lua @@ -526,7 +526,7 @@ end local function hash_generic(self, text, func) local len = #text - if len > 131072 then return self:forceThrow("Input string is too long!") end + if len > 131072 then self:forceThrow("Input string is too long!") end self.prf = self.prf + len * 0.01 return func(text) end