1
0
mirror of https://github.com/mt-mods/basic_materials.git synced 2024-12-24 01:30:39 +01:00
basic_materials/init.lua

15 lines
422 B
Lua
Raw Normal View History

2018-10-31 02:02:29 +01:00
-- Basic materials mod
-- by Vanessa Dannenberg
-- This mod supplies all those little random craft items that everyone always
-- seems to need, such as metal bars (ala rebar), plastic, wire, and so on.
local modpath = minetest.get_modpath("basic_materials")
basic_materials = {}
dofile(modpath.."/metals.lua")
dofile(modpath.."/plastics.lua")
dofile(modpath.."/electrical-electronic.lua")
dofile(modpath.."/misc.lua")