diff options
author | Jat <jinan15@hotmail.com> | 2013-11-03 00:41:08 +0100 |
---|---|---|
committer | Jat <jinan15@hotmail.com> | 2013-11-03 00:41:08 +0100 |
commit | 06ece220b723ce8a08c371c9e66d2ad1e7c9f519 (patch) | |
tree | 9af818ef61b289bf178a69c45487283fa17d491c /init.lua | |
parent | 524dcb1396aa9df0f60c6f74d91c2e24c19e9ad6 (diff) |
Add Coal Stone Bricks ( old Stone Bricks) and modify craft Iron Stone Bricks
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -108,6 +108,13 @@ minetest.register_node("moreblocks:circle_stone_bricks", { sounds = default.node_sound_stone_defaults(),
})
+minetest.register_node("moreblocks:coal_stone_bricks", {
+ description = S("Coal Stone Bricks"),
+ tiles = {"moreblocks_coal_stone_bricks.png"},
+ groups = {cracky=3},
+ sounds = default.node_sound_stone_defaults(),
+})
+
minetest.register_node("moreblocks:iron_stone_bricks", {
description = S("Iron Stone Bricks"),
tiles = {"moreblocks_iron_stone_bricks.png"},
|