Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Sticky block: Add texture, sounds and groups (#397)
  • Loading branch information
Wuzzy2 authored and numberZero committed Jan 18, 2018
1 parent 02f8d29 commit fec82ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions mesecons_stickyblocks/init.lua
Expand Up @@ -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(),
})
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fec82ab

Please sign in to comment.