elepower/elepower_papi/init.lua
Sirrobzeroone 3d28ad39b5 Decouple from default start and fixes
Start to remove all default references to default mod into a single file so they can be more easily updated.
Add recipes for blue/red paper.
Add Silver Wire to internal copy of basic materials
2021-08-11 20:25:00 +10:00

21 lines
518 B
Lua

-- An Elepower Mod
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
local modpath = minetest.get_modpath(minetest.get_current_modname())
ele = rawget(_G, "ele") or {}
ele.modpath = modpath
-- Constants
ele.unit = "EpU"
ele.unit_description = "Elepower Unit"
-- APIs
dofile(modpath..'/external_nodes_items.lua')
dofile(modpath..'/helpers.lua')
dofile(modpath..'/network.lua')
dofile(modpath..'/formspec.lua')
dofile(modpath..'/machine.lua')
dofile(modpath..'/conductor.lua')
dofile(modpath..'/tool.lua')