Merged in Jat15/arrow_signs-1-1/Jat15/solution-for-satisfy-all-mods-for-sign_w-1388793262455 (pull request #1)

Solution for satisfy all mods for sign_wall
This commit is contained in:
Jat15 2014-01-04 00:55:05 +01:00
commit 7b0b0568d9
1 changed files with 5 additions and 1 deletions

View File

@ -54,7 +54,11 @@ end
-- usage
local node = clone_registered("node","default:sign_wall")
node.groups = {choppy=2,dig_immediate=2,sign=1}
if node.legacy_wallmounted then
node.groups = {choppy=2,dig_immediate=2,attached_node=1,sign=1}
else
node.groups = {choppy=2,dig_immediate=2,sign=1}
end
minetest.register_node(":default:sign_wall", node)