Skip to content
Snippets Groups Projects
Commit fec82ab2 authored by Wuzzy's avatar Wuzzy Committed by Vitaliy
Browse files

Sticky block: Add texture, sounds and groups (#397)

parent 02f8d291
No related branches found
No related tags found
No related merge requests found
......@@ -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(),
})
mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png

661 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment