Fix undefined reference to util.compareValue

This commit is contained in:
Gabriel Tofvesson 2025-05-15 23:41:47 +02:00
parent 75896b9304
commit fcad8c6141

View File

@ -73,7 +73,7 @@ function util.fuzzyEquals(value, pattern)
end end
for k,v in pairs(value) do for k,v in pairs(value) do
if not util.compareValue(v, pattern[k]) then if not util.fuzzyEquals(v, pattern[k]) then
return false return false
end end
end end