diff options
author | Wuzzy <wuzzy2@mail.ru> | 2018-01-18 20:01:53 +0100 |
---|---|---|
committer | Vitaliy <silverunicorn2011@yandex.ru> | 2018-01-18 22:01:53 +0300 |
commit | fec82ab246e22bec97317307d8031dbf19844d96 (patch) | |
tree | 1dbf1ca99a6d410b13cc588fe338f118669e17db | |
parent | 02f8d29170b1b742618ba7816f57e12cc0f66027 (diff) |
Sticky block: Add texture, sounds and groups (#397)
-rw-r--r-- | mesecons_stickyblocks/init.lua | 10 | ||||
-rw-r--r-- | mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png | bin | 0 -> 661 bytes |
2 files changed, 6 insertions, 4 deletions
diff --git a/mesecons_stickyblocks/init.lua b/mesecons_stickyblocks/init.lua index 6177f4a..094af09 100644 --- a/mesecons_stickyblocks/init.lua +++ b/mesecons_stickyblocks/init.lua @@ -3,15 +3,17 @@ -- All sides sticky block minetest.register_node("mesecons_stickyblocks:sticky_block_all", { - description = "All-Sides Sticky Block", - tiles = {"default_grass.png^default_footprint.png"}, + -- TODO: Rename to “All-Faces Sticky Block” when other sticky blocks become available + description = "Sticky Block", + tiles = {"mesecons_stickyblocks_sticky.png"}, is_ground_content = false, - groups = {dig_immediate=2}, + groups = {choppy=3, oddly_breakable_by_hand=2}, mvps_sticky = function (pos, node) local connected = {} for _, r in ipairs(mesecon.rules.alldirs) do table.insert(connected, vector.add(pos, r)) end return connected - end + end, + sounds = default.node_sound_wood_defaults(), }) diff --git a/mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png b/mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png Binary files differnew file mode 100644 index 0000000..3a5f6f1 --- /dev/null +++ b/mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png |