Another bugfix

This commit is contained in:
Emerson Rosen-Jones 2025-09-14 13:45:08 -04:00
parent 52555e6b84
commit ed0671d50b

View file

@ -86,7 +86,7 @@ function drain (type, form, amount)
elseif form == "ingot" then
conversion = "ingot_to_block"
end
print("Draining %d %s %ss":format(amount, type, form))
print(("Draining %d %s %ss"):format(amount, type, form))
request_multiple(type, conversion, amount)
end
@ -101,7 +101,7 @@ function fill (type, dest, amount)
conversion = "block_to_ingot"
end
end
print("Converting %d %s %ss to %ss":format(amount, type, src, dest))
print(("Converting %d %s %ss to %ss"):format(amount, type, src, dest))
request_multiple(type, conversion, amount)
end