mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-14 22:40:41 +01:00
unwrap numbers in strings
related: https://github.com/minetest-mods/technic/issues/553
This commit is contained in:
parent
c98d352944
commit
3b18754d53
|
@ -16,7 +16,7 @@ local function inject_items (pos)
|
||||||
if stack then
|
if stack then
|
||||||
local item0=stack:to_table()
|
local item0=stack:to_table()
|
||||||
if item0 then
|
if item0 then
|
||||||
item0["count"] = "1"
|
item0["count"] = 1
|
||||||
technic.tube_inject_item(pos, pos, vector.new(0, -1, 0), item0)
|
technic.tube_inject_item(pos, pos, vector.new(0, -1, 0), item0)
|
||||||
stack:take_item(1)
|
stack:take_item(1)
|
||||||
inv:set_stack("main", i, stack)
|
inv:set_stack("main", i, stack)
|
||||||
|
@ -148,4 +148,3 @@ minetest.register_abm({
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ function technic.send_items(pos, x_velocity, z_velocity, output_name)
|
||||||
if stack then
|
if stack then
|
||||||
local item0 = stack:to_table()
|
local item0 = stack:to_table()
|
||||||
if item0 then
|
if item0 then
|
||||||
item0["count"] = "1"
|
item0["count"] = 1
|
||||||
technic.tube_inject_item(pos, pos, vector.new(x_velocity, 0, z_velocity), item0)
|
technic.tube_inject_item(pos, pos, vector.new(x_velocity, 0, z_velocity), item0)
|
||||||
stack:take_item(1)
|
stack:take_item(1)
|
||||||
inv:set_stack(output_name, i, stack)
|
inv:set_stack(output_name, i, stack)
|
||||||
|
@ -211,4 +211,3 @@ function technic.machine_inventory_move(pos, from_list, from_index,
|
||||||
local stack = minetest.get_meta(pos):get_inventory():get_stack(from_list, from_index)
|
local stack = minetest.get_meta(pos):get_inventory():get_stack(from_list, from_index)
|
||||||
return inv_change(pos, player, count, from_list, to_list, stack)
|
return inv_change(pos, player, count, from_list, to_list, stack)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user