switched to unpack method

This commit is contained in:
VorTechnix 2024-10-16 19:53:10 -07:00
parent c86319d94e
commit 63bdbdfac9
No known key found for this signature in database
GPG Key ID: 091E91A69545D5BA

@ -156,9 +156,9 @@ function Notify.suppress_for_function(name, func)
-- If the player is already suppressed, cancel it unless it's a function -- If the player is already suppressed, cancel it unless it's a function
if not check_clear_suppressed(name, suppress) then return false end if not check_clear_suppressed(name, suppress) then return false end
suppress[name] = func suppress[name] = func
local success, result = suppress[name]() local result_table = { suppress[name]() }
suppress[name] = nil suppress[name] = nil
return success, result return wea_c.table.unpack(result_table)
end end
--- WorldEdit compatibility --- WorldEdit compatibility