Aktualizovat „basic_machines/technic_power.lua“

This commit is contained in:
Milan2018 2020-04-25 12:43:11 +02:00
parent 0cdb407818
commit 5760f0ebf3
1 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ minetest.register_node("basic_machines:battery_0", {
insert_object = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
return inv:add_item("upgrade", stack)
return inv:add_item("fuel", stack)
end,
can_insert = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
@ -283,7 +283,7 @@ minetest.register_node("basic_machines:battery_0", {
if meta:get_int("split_material_stacks") == 1 then
stack = stack:peek_item(1)
end
return inv:room_for_item("upgrade", stack)
return inv:room_for_item("fuel", stack)
end,
input_inventory = "fuel",
connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1}