fix: call recursive function properly

This commit is contained in:
Emerson Rosen-Jones 2025-12-19 23:48:04 -05:00
parent 56c8335161
commit 65c3b4fe20

View file

@ -80,6 +80,7 @@ local order = {
amt_made = amt_made + count amt_made = amt_made + count
return make_order (amt_to_make, amt_made) return make_order (amt_to_make, amt_made)
end end
return make_order (amt, 0)
end, end,
} }