Parts manager: actually evaluate functions

This commit is contained in:
NullBite 2022-03-21 18:17:59 -04:00
parent 1cfe63e7de
commit 0ca5905ab6
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -198,7 +198,7 @@ do
function evaluatePart(part)
local part_key=tostring(part)
return ireduce(function(x, y) return x and y end,
return ireduce(function(x, y) return x() and y() end,
pm[part_key].functions, true)
end