mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-26 09:03:51 +01:00
4c5b36fc88
fixed too far inventory accesses by detaching the networks inventory fixed vanishsing items with dynamic inventory size allocation
16 lines
320 B
Lua
16 lines
320 B
Lua
-- storage/init.lua
|
|
|
|
local module_path = microexpansion.get_module_path("storage")
|
|
|
|
microexpansion.require_module("network")
|
|
|
|
-- Load API
|
|
dofile(module_path.."/api.lua")
|
|
|
|
-- Load storage devices
|
|
dofile(module_path.."/storage.lua")
|
|
|
|
-- Load machines
|
|
dofile(module_path.."/drive.lua")
|
|
dofile(module_path.."/terminal.lua")
|