forked from VoxeLibre/VoxeLibre
Add #1488 (sponge drying in nether makes now particles)
This commit is contained in:
parent
7a00e8acf7
commit
f1b7476825
|
@ -114,6 +114,19 @@ function place_wet_sponge(itemstack, placer, pointed_thing)
|
||||||
|
|
||||||
if mcl_worlds.pos_to_dimension(pointed_thing.above) == "nether" then
|
if mcl_worlds.pos_to_dimension(pointed_thing.above) == "nether" then
|
||||||
minetest.item_place_node(ItemStack("mcl_sponges:sponge"), placer, pointed_thing)
|
minetest.item_place_node(ItemStack("mcl_sponges:sponge"), placer, pointed_thing)
|
||||||
|
local pos = pointed_thing.above
|
||||||
|
for n = 0, 25 do
|
||||||
|
minetest.add_particle({
|
||||||
|
pos = {x = pos.x + math.random(-1, 1)*math.random()/2, y = pos.y + 0.6, z = pos.z + math.random(-1, 1)*math.random()/2},
|
||||||
|
velocity = {x = 0, y = math.random(), z = 0},
|
||||||
|
acceleration = {x=0, y=0, z=0},
|
||||||
|
expirationtime = math.random(),
|
||||||
|
collisiondetection = false,
|
||||||
|
vertical = false,
|
||||||
|
size = math.random(2, 5),
|
||||||
|
texture = "mcl_particles_sponge"..math.random(1, 5)..".png",
|
||||||
|
})
|
||||||
|
end
|
||||||
if not minetest.is_creative_enabled(name) then
|
if not minetest.is_creative_enabled(name) then
|
||||||
itemstack:take_item()
|
itemstack:take_item()
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue