Skip to content

Commit

Permalink
Remove return (I forgot to commit this)
Browse files Browse the repository at this point in the history
  • Loading branch information
Denneisk committed Dec 4, 2024
1 parent d37393b commit c24ffe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/entities/gmod_wire_expression2/core/string.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c24ffe8

Please sign in to comment.