Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/HeroOfTheWinds/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
FaceDeer committed Sep 13, 2017
2 parents 7502783 + 9ab6487 commit 5d13e78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion falling_ice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function caverealms:nodeupdate_single(p, delay)
end

if minetest.get_item_group(n.name, "attached_node") ~= 0 then
if not check_attached_node(p, n) then
if not caverealms:check_attached_node(p, n) then
caverealms:drop_attached_node(p)
caverealms:nodeupdate(p)
end
Expand Down
3 changes: 3 additions & 0 deletions nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,9 @@ minetest.register_node("caverealms:mushroom_gills", {
paramtype = "light",
})

--define special flame so that it does not expire
minetest.register_alias("caverealms:constant_flame", "fire:permanent_flame")

--node to create a treasure chest in DM Forts.
minetest.register_node("caverealms:s_chest", {
description = "Trying to rob the bank before it's opened, eh?",
Expand Down

0 comments on commit 5d13e78

Please sign in to comment.