mirror of
https://github.com/Splizard/minetest-mod-snow.git
synced 2024-12-28 23:40:17 +01:00
Make snow covered papyrus not fall apart when dug.
This commit is contained in:
parent
4835a2b7f5
commit
ec9da88ab0
7
init.lua
7
init.lua
@ -349,6 +349,13 @@ minetest.register_node("snow:snow_block", {
|
|||||||
local n = minetest.env:get_node(pos).name
|
local n = minetest.env:get_node(pos).name
|
||||||
if n == "air" or n == "default:water_flowing" or n == "default:water_source" then
|
if n == "air" or n == "default:water_flowing" or n == "default:water_source" then
|
||||||
minetest.env:add_node(pos,{name="default:papyrus"})
|
minetest.env:add_node(pos,{name="default:papyrus"})
|
||||||
|
pos.y = pos.y + 1
|
||||||
|
local n = minetest.env:get_node(pos)
|
||||||
|
if n.name == "snow:snow_block" and n.param2 == 2 then
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
pos.y = pos.y - 1
|
||||||
|
minetest.env:add_node(pos,{name="snow:snow_block",param2=2})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
elseif node.param2 == 3 then
|
elseif node.param2 == 3 then
|
||||||
local n = minetest.env:get_node(pos).name
|
local n = minetest.env:get_node(pos).name
|
||||||
|
Loading…
Reference in New Issue
Block a user