2017-02-09 16:37:14 +01:00
|
|
|
-- microexpansion/machines.lua
|
|
|
|
|
2017-02-23 16:35:42 +01:00
|
|
|
local me = microexpansion
|
|
|
|
|
2020-03-07 18:02:14 +01:00
|
|
|
local netdrives
|
|
|
|
|
|
|
|
-- load drives
|
|
|
|
local function load_drives()
|
|
|
|
local f = io.open(me.worldpath.."/microexpansion_drives", "r")
|
|
|
|
if f then
|
|
|
|
netdrives = minetest.deserialize(f:read("*all")) or {}
|
|
|
|
f:close()
|
2020-03-16 09:59:18 +01:00
|
|
|
--[[
|
2020-03-07 18:02:14 +01:00
|
|
|
if type(res) == "table" then
|
|
|
|
for _,d in pairs(res) do
|
|
|
|
table.insert(netdrives,d)
|
|
|
|
end
|
|
|
|
end
|
2020-03-16 09:59:18 +01:00
|
|
|
]]
|
2020-06-17 09:30:47 +02:00
|
|
|
else
|
|
|
|
netdrives = {}
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- load now
|
|
|
|
load_drives()
|
|
|
|
|
|
|
|
-- save drives
|
|
|
|
local function save_drives()
|
|
|
|
local f = io.open(me.worldpath.."/microexpansion_drives", "w")
|
|
|
|
f:write(minetest.serialize(netdrives))
|
|
|
|
f:close()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- save on server shutdown
|
|
|
|
minetest.register_on_shutdown(save_drives)
|
|
|
|
|
|
|
|
local function get_drive_controller(pos)
|
|
|
|
for i,d in pairs(netdrives) do
|
|
|
|
if d.dpos then
|
|
|
|
if vector.equals(pos, d.dpos) then
|
2023-12-31 00:52:43 +01:00
|
|
|
return d,i
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return --false,#netdrives+1
|
|
|
|
end
|
|
|
|
|
|
|
|
local function set_drive_controller(dpos,setd,cpos,i)
|
|
|
|
if i then
|
|
|
|
local dt = netdrives[i]
|
|
|
|
if dt then
|
|
|
|
if setd then
|
2023-12-31 00:52:43 +01:00
|
|
|
dt.dpos = dpos
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
if cpos ~= nil then
|
2023-12-31 00:52:43 +01:00
|
|
|
dt.cpos = cpos
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
netdrives[i] = {dpos = dpos, cpos = cpos}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local dt = get_drive_controller(dpos)
|
|
|
|
if dt then
|
|
|
|
if setd then
|
2023-12-31 00:52:43 +01:00
|
|
|
dt.dpos = dpos
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
if cpos ~= nil then
|
2023-12-31 00:52:43 +01:00
|
|
|
dt.cpos = cpos
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
table.insert(netdrives,{dpos = dpos, cpos = cpos})
|
|
|
|
end
|
|
|
|
end
|
2019-05-07 17:49:26 +02:00
|
|
|
end
|
2017-02-23 23:31:02 +01:00
|
|
|
|
2019-05-07 17:49:26 +02:00
|
|
|
local function write_to_cell(cell, items, item_count)
|
2023-12-31 00:52:43 +01:00
|
|
|
local size = microexpansion.get_cell_size(cell:get_name())
|
|
|
|
local item_meta = cell:get_meta()
|
|
|
|
--print(dump2(items,"cell_items"))
|
|
|
|
item_meta:set_string("items", minetest.serialize(items))
|
|
|
|
local base_desc = minetest.registered_craftitems[cell:get_name()].microexpansion.base_desc
|
|
|
|
-- Calculate Percentage
|
|
|
|
local percent = math.floor(item_count / size * 100)
|
|
|
|
-- Update description
|
|
|
|
item_meta:set_string("description", base_desc.."\n"..
|
|
|
|
minetest.colorize("grey", tostring(item_count).."/"..tostring(size).." Items ("..tostring(percent).."%)"))
|
|
|
|
return cell
|
2017-02-09 16:37:14 +01:00
|
|
|
end
|
|
|
|
|
2023-12-31 00:52:43 +01:00
|
|
|
local function write_drive_cells(pos, net)
|
2020-03-07 18:02:14 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local own_inv = meta:get_inventory()
|
2023-12-31 00:52:43 +01:00
|
|
|
if net == nil then
|
2020-03-07 18:02:14 +01:00
|
|
|
return false
|
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
local ctrl_inv = net:get_inventory()
|
2020-03-07 18:02:14 +01:00
|
|
|
local cells = {}
|
|
|
|
for i = 1, own_inv:get_size("main") do
|
|
|
|
local cell = own_inv:get_stack("main", i)
|
|
|
|
local name = cell:get_name()
|
|
|
|
if name ~= "" then
|
|
|
|
cells[i] = cell
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local cell_idx = next(cells)
|
|
|
|
if cell_idx == nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local size = microexpansion.get_cell_size(cells[cell_idx]:get_name())
|
|
|
|
local items_in_cell_count = 0
|
|
|
|
local cell_items = {}
|
|
|
|
|
2023-12-31 00:52:43 +01:00
|
|
|
net:update_counts()
|
|
|
|
if not net.counts then
|
|
|
|
net.counts = {}
|
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
for i = 1, ctrl_inv:get_size("main") do
|
2023-12-31 00:52:43 +01:00
|
|
|
local stack = ctrl_inv:get_stack("main", i)
|
|
|
|
local item_string = stack:to_string()
|
2020-10-04 11:48:05 +02:00
|
|
|
if item_string ~= "" then
|
|
|
|
item_string = item_string:split(" ")
|
2023-12-31 00:52:43 +01:00
|
|
|
lbias = (net.counts and net.counts[stack:get_name()]) or 0
|
|
|
|
local mbias = (net.bias and net.bias["main"] and net.bias["main"][stack:get_name()]) or 0
|
|
|
|
if mbias > lbias and lbias > 0 then
|
|
|
|
mbias = mbias - lbias
|
|
|
|
lbias = 0
|
|
|
|
net.bias["main"][stack:get_name()] = mbias
|
|
|
|
net.counts[stack:get_name()] = nil
|
|
|
|
elseif lbias > mbias and mbias > 0 then
|
|
|
|
lbias = lbias - mbias
|
|
|
|
mbias = 0
|
|
|
|
net.counts[stack:get_name()] = lbias
|
|
|
|
net.bias["main"][stack:get_name()] = nil
|
|
|
|
elseif mbias == lbias and mbias > 0 then
|
|
|
|
net.bias["main"][stack:get_name()] = nil
|
|
|
|
net.counts[stack:get_name()] = nil
|
|
|
|
end
|
|
|
|
local item_count = stack:get_count() + mbias
|
|
|
|
-- TODO: on_loan includes the >32k bias in it, so, therefore the
|
|
|
|
-- stack:get_count() + mbias should have it in it.
|
|
|
|
local on_loan = net.counts[stack:get_name()] or 0
|
|
|
|
item_count = item_count - on_loan
|
|
|
|
if item_count < 0 then
|
|
|
|
me.log("LOAN: drive "..item_count.." "..stack:get_name().." "..on_loan.." on loan", "error")
|
|
|
|
-- TODO: we need to update the count faster and we need to update counts from actual inventories
|
|
|
|
-- and not allow taking unless there is an actual item there, mostly done now
|
|
|
|
-- TODO: In theory this should be impossible now, but we have
|
|
|
|
-- bugs with cell removal and insert, see wow
|
|
|
|
me.log("wow, free items "..stack:get_name().." during drive write, "..tostring(-item_count).." extra, with a loan of "..on_loan, "error")
|
|
|
|
item_count = 0
|
|
|
|
if mbias > 0 then
|
|
|
|
net.bias["main"][stack:get_name()] = nil
|
|
|
|
end
|
|
|
|
end
|
2020-10-04 11:48:05 +02:00
|
|
|
if item_count > 1 and item_string[2] ~= tostring(item_count) then
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("stack count differs from second field of the item string","warning")
|
2020-10-04 11:48:05 +02:00
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
while item_count ~= 0 and cell_idx ~= nil do
|
2023-12-31 00:52:43 +01:00
|
|
|
--print(("stack to store: %q"):format(table.concat(item_string," ")))
|
2020-03-07 18:02:14 +01:00
|
|
|
|
2023-12-31 00:52:43 +01:00
|
|
|
-- TODO: This should fail if we write 64k items onto a 64k
|
|
|
|
-- drive (or larger). Fix by writting the number first, that's
|
|
|
|
-- the bias and then the name. This requires that no node in
|
|
|
|
-- the storage system starts with a number. Then in read,
|
|
|
|
-- support that.
|
|
|
|
|
|
|
|
if size < items_in_cell_count + item_count then
|
|
|
|
local space = size - items_in_cell_count
|
|
|
|
item_string[2] = tostring(space)
|
|
|
|
table.insert(cell_items,table.concat(item_string," "))
|
|
|
|
items_in_cell_count = items_in_cell_count + space
|
|
|
|
|
|
|
|
own_inv:set_stack("main", cell_idx, write_to_cell(cells[cell_idx],cell_items,items_in_cell_count))
|
|
|
|
cell_idx = next(cells, cell_idx)
|
|
|
|
if cell_idx == nil then
|
|
|
|
--there may be other drives within the network
|
|
|
|
me.log("too many items to store in drive","info")
|
|
|
|
break
|
|
|
|
end
|
|
|
|
size = microexpansion.get_cell_size(cells[cell_idx]:get_name())
|
|
|
|
items_in_cell_count = 0
|
|
|
|
cell_items = {}
|
|
|
|
item_count = item_count - space
|
|
|
|
else
|
|
|
|
items_in_cell_count = items_in_cell_count + item_count
|
|
|
|
item_string[2] = tostring(item_count)
|
|
|
|
table.insert(cell_items,table.concat(item_string," "))
|
|
|
|
item_count = 0
|
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if cell_idx == nil then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
while cell_idx ~= nil do
|
|
|
|
own_inv:set_stack("main", cell_idx, write_to_cell(cells[cell_idx],cell_items,items_in_cell_count))
|
|
|
|
items_in_cell_count = 0
|
|
|
|
cell_items = {}
|
|
|
|
cell_idx = next(cells, cell_idx)
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local function take_all(pos,net)
|
2023-12-31 00:52:43 +01:00
|
|
|
-- me.log("take_all", "error")
|
2020-03-07 18:02:14 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local own_inv = meta:get_inventory()
|
|
|
|
local ctrl_inv = net:get_inventory()
|
|
|
|
local items = {}
|
|
|
|
for i = 1, own_inv:get_size("main") do
|
|
|
|
local stack = own_inv:get_stack("main", i)
|
|
|
|
local name = stack:get_name()
|
|
|
|
if name ~= "" then
|
|
|
|
local its = minetest.deserialize(stack:get_meta():get_string("items"))
|
|
|
|
for _,s in pairs(its) do
|
2023-12-31 00:52:43 +01:00
|
|
|
table.insert(items,s)
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
for _,ostack in pairs(items) do
|
|
|
|
--this returns 99 (max count) even if it removes more
|
2023-12-31 00:52:43 +01:00
|
|
|
--ctrl_inv:remove_item("main", ostack)
|
|
|
|
local postack = ItemStack(ostack)
|
|
|
|
-- me.log("drive take_all remove_item "..minetest.serialize(ostack), "error")
|
|
|
|
me.log("DRIVE: take_all remove_item "..tostring(postack:get_count()).." "..postack:get_name(), "error")
|
|
|
|
me.remove_item(net, ctrl_inv, "main", postack)
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
|
2020-03-07 18:02:14 +01:00
|
|
|
net:update()
|
|
|
|
me.send_event(pos,"items")
|
|
|
|
end
|
|
|
|
|
|
|
|
local function add_all(pos,net)
|
2023-12-31 00:52:43 +01:00
|
|
|
-- me.log("add_all", "error")
|
2020-03-07 18:02:14 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local own_inv = meta:get_inventory()
|
|
|
|
local ctrl_inv = net:get_inventory()
|
|
|
|
local items = {}
|
|
|
|
for i = 1, own_inv:get_size("main") do
|
|
|
|
local stack = own_inv:get_stack("main", i)
|
|
|
|
local name = stack:get_name()
|
|
|
|
if name ~= "" then
|
|
|
|
local its = minetest.deserialize(stack:get_meta():get_string("items"))
|
|
|
|
if its then
|
2023-12-31 00:52:43 +01:00
|
|
|
for _,s in pairs(its) do
|
|
|
|
table.insert(items,s)
|
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
end
|
2020-03-07 18:02:14 +01:00
|
|
|
for _,ostack in pairs(items) do
|
2023-12-31 00:52:43 +01:00
|
|
|
me.insert_item(ostack, net, ctrl_inv, "main")
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
|
2020-03-07 18:02:14 +01:00
|
|
|
net:update()
|
|
|
|
me.send_event(pos,"items",{net = net})
|
|
|
|
end
|
|
|
|
|
|
|
|
function me.disconnect_drive(pos,ncpos)
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("disconnecting drive at "..minetest.pos_to_string(pos),"action")
|
2020-03-07 18:02:14 +01:00
|
|
|
local fc,i = get_drive_controller(pos)
|
|
|
|
if not fc.cpos then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local fnet = me.get_network(fc.cpos)
|
|
|
|
write_drive_cells(pos,fnet)
|
|
|
|
if ncpos then
|
|
|
|
set_drive_controller(pos,false,ncpos,i)
|
|
|
|
else
|
|
|
|
set_drive_controller(pos,false,false,i)
|
|
|
|
end
|
|
|
|
if fnet then
|
|
|
|
take_all(pos,fnet)
|
|
|
|
else
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("drive couldn't take items from its former network","warning")
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function update_drive(pos,_,ev)
|
|
|
|
if ev.type~="connect" and ev.type~="disconnect" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local fc,i = get_drive_controller(pos)
|
|
|
|
local cnet = ev.net or me.get_connected_network(pos)
|
|
|
|
if cnet then
|
|
|
|
if not fc then
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("connecting drive at "..minetest.pos_to_string(pos), "action")
|
2020-03-07 18:02:14 +01:00
|
|
|
set_drive_controller(pos,true,cnet.controller_pos,i)
|
|
|
|
add_all(pos,cnet)
|
|
|
|
elseif not fc.cpos then
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("connecting drive at "..minetest.pos_to_string(pos), "action")
|
2020-03-07 18:02:14 +01:00
|
|
|
set_drive_controller(pos,false,cnet.controller_pos,i)
|
|
|
|
add_all(pos,cnet)
|
|
|
|
elseif not vector.equals(fc.cpos,cnet.controller_pos) then
|
2023-12-31 00:52:43 +01:00
|
|
|
me.log("reconnecting drive at "..minetest.pos_to_string(pos), "action")
|
2020-03-07 18:02:14 +01:00
|
|
|
write_drive_cells(pos,me.get_network(fc.cpos))
|
|
|
|
set_drive_controller(pos,false,cnet.controller_pos,i)
|
|
|
|
add_all(pos,cnet)
|
|
|
|
me.disconnect_drive(pos,cnet.controller_pos)
|
|
|
|
else
|
|
|
|
if ev.origin.name == "microexpansion:ctrl" then
|
2023-12-31 00:52:43 +01:00
|
|
|
me.disconnect_drive(pos,false)
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
2023-12-31 00:52:43 +01:00
|
|
|
elseif fc then
|
|
|
|
if fc.cpos then
|
|
|
|
me.disconnect_drive(pos,false)
|
2020-03-07 18:02:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-09 16:37:14 +01:00
|
|
|
-- [me chest] Register node
|
2019-05-07 17:49:26 +02:00
|
|
|
microexpansion.register_node("drive", {
|
2023-12-31 00:52:43 +01:00
|
|
|
description = "ME Drive",
|
|
|
|
usedfor = "Stores items into ME storage cells",
|
|
|
|
tiles = {
|
|
|
|
"chest_top",
|
|
|
|
"chest_top",
|
|
|
|
"chest_side",
|
|
|
|
"chest_side",
|
|
|
|
"chest_side",
|
|
|
|
"drive_full",
|
|
|
|
},
|
|
|
|
recipe = {
|
2020-03-04 16:46:22 +01:00
|
|
|
{ 1, {
|
2023-12-31 00:52:43 +01:00
|
|
|
{"default:steel_ingot", "default:chest", "default:steel_ingot" },
|
|
|
|
{"default:steel_ingot", "microexpansion:machine_casing", "default:steel_ingot" },
|
|
|
|
{"default:steel_ingot", "default:chest", "default:steel_ingot" },
|
2020-03-04 16:46:22 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
2023-12-31 00:52:43 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = { cracky = 1, me_connect = 1 },
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
me_update = update_drive,
|
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("formspec",
|
|
|
|
"size[9,7.5]"..
|
|
|
|
microexpansion.gui_bg ..
|
|
|
|
microexpansion.gui_slots ..
|
|
|
|
[[
|
|
|
|
label[0,-0.23;ME Drive]
|
|
|
|
list[context;main;0,0.3;5,2]
|
|
|
|
list[current_player;main;0,3.5;8,1;]
|
|
|
|
list[current_player;main;0,4.73;8,3;8]
|
|
|
|
listring[current_name;main]
|
|
|
|
listring[current_player;main]
|
|
|
|
field_close_on_enter[filter;false]
|
|
|
|
]])
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
inv:set_size("main", 10)
|
|
|
|
me.send_event(pos,"connect")
|
|
|
|
end,
|
|
|
|
can_dig = function(pos, player)
|
|
|
|
if minetest.is_protected(pos, player) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return inv:is_empty("main")
|
|
|
|
end,
|
|
|
|
after_destruct = function(pos)
|
2020-03-07 18:02:14 +01:00
|
|
|
me.send_event(pos,"disconnect")
|
|
|
|
end,
|
2023-12-31 00:52:43 +01:00
|
|
|
allow_metadata_inventory_put = function(pos, _, _, stack, player)
|
|
|
|
if minetest.is_protected(pos, player)
|
|
|
|
or minetest.get_item_group(stack:get_name(), "microexpansion_cell") == 0 then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return 1
|
|
|
|
end,
|
|
|
|
on_metadata_inventory_put = function(pos, _, _, stack)
|
|
|
|
me.send_event(pos,"item_cap")
|
|
|
|
local network = me.get_connected_network(pos)
|
|
|
|
if network == nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local ctrl_inv = network:get_inventory()
|
|
|
|
local items = minetest.deserialize(stack:get_meta():get_string("items"))
|
|
|
|
if items == nil then
|
|
|
|
print("no items")
|
|
|
|
me.send_event(pos,"items",{net=network})
|
|
|
|
return
|
|
|
|
end
|
|
|
|
-- network:set_storage_space(#items)
|
|
|
|
for _,stack in pairs(items) do
|
|
|
|
network:set_storage_space(true)
|
|
|
|
me.insert_item(stack, network, ctrl_inv, "main")
|
|
|
|
end
|
|
|
|
network:set_storage_space(true)
|
|
|
|
me.send_event(pos,"items",{net=network})
|
|
|
|
end,
|
|
|
|
allow_metadata_inventory_take = function(pos,_,_,stack, player) --args: pos, listname, index, stack, player
|
|
|
|
if minetest.is_protected(pos, player) then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
local network = me.get_connected_network(pos)
|
|
|
|
write_drive_cells(pos,network)
|
|
|
|
return stack:get_count()
|
|
|
|
end,
|
|
|
|
on_metadata_inventory_take = function(pos, _, _, stack)
|
|
|
|
local network = me.get_connected_network(pos)
|
|
|
|
if network == nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
me.send_event(pos,"item_cap",{net=network})
|
|
|
|
local ctrl_inv = network:get_inventory()
|
|
|
|
local items = minetest.deserialize(stack:get_meta():get_string("items"))
|
|
|
|
if items == nil then
|
|
|
|
network:update()
|
|
|
|
return
|
|
|
|
end
|
|
|
|
for _,ostack in pairs(items) do
|
|
|
|
local postack = ItemStack(ostack)
|
|
|
|
-- me.log("drive meta_inv_take remove_item "..tostring(postack:get_count()).." "..postack:get_name(), "error")
|
|
|
|
-- TODO: this was here, but did nothing? me.remove_item(network, ctrl_inv, "main", postack)
|
|
|
|
-- No, this is the main item removal on cell removal from drive
|
|
|
|
me.remove_item(network, ctrl_inv, "main", postack)
|
|
|
|
--this returns 99 (max count) even if it removes more
|
|
|
|
--ctrl_inv:remove_item("main", ostack)
|
|
|
|
end
|
|
|
|
--print(stack:to_string())
|
2019-05-07 17:49:26 +02:00
|
|
|
|
2020-03-01 08:23:39 +01:00
|
|
|
network:update()
|
2023-12-31 00:52:43 +01:00
|
|
|
me.send_event(pos,"items",{net=network})
|
|
|
|
end,
|
2017-02-09 16:37:14 +01:00
|
|
|
})
|