diff options
author | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-31 13:38:52 -0400 |
---|---|---|
committer | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-31 13:38:52 -0400 |
commit | 869b40a24d4c0e89b05ae70173c1b7ffd397f9b1 (patch) | |
tree | fbd58d1df4384ebae9fb03fac5d9ec6b01bd0967 /glooptest | |
parent | f23603a325cfad46e16550521d4409300af40b49 (diff) | |
download | dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.gz dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.bz2 dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.xz dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.zip |
add basic_materials mod
update homedecor, pipeworks, gloopblocks, signs_lib, stainedglass
also updated technic, roads, glooptest, framedglass
(they're my forks actually, just until some pending PRs are merged)
make default locked chests use basic_materials padlock
Diffstat (limited to 'glooptest')
-rw-r--r-- | glooptest/depends.txt | 3 | ||||
-rw-r--r-- | glooptest/parts_module/init.lua | 16 |
2 files changed, 3 insertions, 16 deletions
diff --git a/glooptest/depends.txt b/glooptest/depends.txt index 331d858..b6b8c61 100644 --- a/glooptest/depends.txt +++ b/glooptest/depends.txt @@ -1 +1,2 @@ -default
\ No newline at end of file +default +basic_materials diff --git a/glooptest/parts_module/init.lua b/glooptest/parts_module/init.lua index b1a9202..fe3f9b1 100644 --- a/glooptest/parts_module/init.lua +++ b/glooptest/parts_module/init.lua @@ -1,20 +1,6 @@ glooptest.parts_module = {} glooptest.debug("MESSAGE","Loading Parts Module Now!") -minetest.register_craftitem("glooptest:chainlink", { - description = "Chainlink", - inventory_image = "glooptest_chainlink.png" -}) - -minetest.register_craft({ - output = "glooptest:chainlink 8", - recipe = { - {"", "default:steel_ingot", ""}, - {"default:steel_ingot", "", "default:steel_ingot"}, - {"", "default:steel_ingot", ""} - } -}) - minetest.register_node("glooptest:crystal_glass", { description = "Crystal Glass", drawtype = "allfaces", @@ -171,4 +157,4 @@ if LOAD_ORE_MODULE == true then {"glooptest:crystal_glass", "glooptest:crystal_glass", "glooptest:crystal_glass"} } }) -end
\ No newline at end of file +end |