summaryrefslogtreecommitdiff
path: root/solidcolor/init.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-16 17:05:50 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-16 17:05:50 -0500
commit784ba2e68ca534b4355ecc26509e53c214f13977 (patch)
tree034367a2741bad3e2b6fa2727dd86b8ece387cc2 /solidcolor/init.lua
parentc66f03b6fe2fc6c4d9d4c05be5e61fc1b27c1327 (diff)
downloaddreambuilder_modpack-784ba2e68ca534b4355ecc26509e53c214f13977.tar
dreambuilder_modpack-784ba2e68ca534b4355ecc26509e53c214f13977.tar.gz
dreambuilder_modpack-784ba2e68ca534b4355ecc26509e53c214f13977.tar.bz2
dreambuilder_modpack-784ba2e68ca534b4355ecc26509e53c214f13977.tar.xz
dreambuilder_modpack-784ba2e68ca534b4355ecc26509e53c214f13977.zip
update several mods and add a few
updated: blox, bobblocks, castle, homedecor, coloredwood, ilights, stainedglass, unifiedbricks added: cheapie's rgblightstone, digistuff, unifiedmesecons, and solidcolor
Diffstat (limited to 'solidcolor/init.lua')
-rw-r--r--solidcolor/init.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/solidcolor/init.lua b/solidcolor/init.lua
new file mode 100644
index 0000000..0334340
--- /dev/null
+++ b/solidcolor/init.lua
@@ -0,0 +1,18 @@
+minetest.register_node("solidcolor:block", {
+ description = "Solid Color Block",
+ tiles = {"solidcolor_white.png"},
+ is_ground_content = false,
+ groups = {dig_immediate=2,ud_param2_colorable=1},
+ sounds = (default and default.node_sound_stone_defaults()),
+ paramtype2 = "color",
+ palette = "unifieddyes_palette.png",
+ after_dig_node = unifieddyes.after_dig_node,
+})
+
+minetest.register_craft( {
+ output = "solidcolor:block",
+ recipe = {
+ { "dye:white", "dye:white"},
+ { "dye:white", "dye:white"},
+ },
+})