Another bugfix
This commit is contained in:
parent
52555e6b84
commit
ed0671d50b
1 changed files with 2 additions and 2 deletions
|
|
@ -86,7 +86,7 @@ function drain (type, form, amount)
|
||||||
elseif form == "ingot" then
|
elseif form == "ingot" then
|
||||||
conversion = "ingot_to_block"
|
conversion = "ingot_to_block"
|
||||||
end
|
end
|
||||||
print("Draining %d %s %ss":format(amount, type, form))
|
print(("Draining %d %s %ss"):format(amount, type, form))
|
||||||
request_multiple(type, conversion, amount)
|
request_multiple(type, conversion, amount)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -101,7 +101,7 @@ function fill (type, dest, amount)
|
||||||
conversion = "block_to_ingot"
|
conversion = "block_to_ingot"
|
||||||
end
|
end
|
||||||
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)
|
request_multiple(type, conversion, amount)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue