[nether] Update to Git commit 1903dfc:
https://github.com/AntumDeluge/mtmod-nether/tree/1903dfc
This commit is contained in:
parent
4a963ca20b
commit
99929f00cf
@ -536,7 +536,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
||||
[patch.moremesecons]: https://github.com/AntumDeluge/mtmp-moremesecons/tree/cae948e
|
||||
[patch.moreores]: https://github.com/AntumDeluge/mtmod-moreores/tree/8b874f6
|
||||
[patch.mydoors]: https://github.com/AntumDeluge/mtmp-mydoors/tree/e36c9d1
|
||||
[patch.nether]: https://github.com/AntumDeluge/mtmod-nether/tree/ec3e2af
|
||||
[patch.nether]: https://github.com/AntumDeluge/mtmod-nether/tree/1903dfc
|
||||
[patch.pipeworks]: https://github.com/AntumDeluge/mtmod-pipeworks/tree/81480a5
|
||||
[patch.playeranim]: https://github.com/AntumDeluge/mtmod-playeranim/tree/54a4cb6
|
||||
[patch.quartz]: https://github.com/AntumDeluge/mtmod-quartz/tree/d23dabd
|
||||
|
@ -1,4 +1,3 @@
|
||||
stairs
|
||||
default
|
||||
moreblocks?
|
||||
craft_guide?
|
||||
|
@ -246,22 +246,22 @@ minetest.register_abm({
|
||||
interval = 1,
|
||||
chance = 2,
|
||||
action = function(pos, node)
|
||||
minetest.add_particlespawner(
|
||||
32, --amount
|
||||
4, --time
|
||||
{x = pos.x - 0.25, y = pos.y - 0.25, z = pos.z - 0.25}, --minpos
|
||||
{x = pos.x + 0.25, y = pos.y + 0.25, z = pos.z + 0.25}, --maxpos
|
||||
{x = -0.8, y = -0.8, z = -0.8}, --minvel
|
||||
{x = 0.8, y = 0.8, z = 0.8}, --maxvel
|
||||
{x = 0, y = 0, z = 0}, --minacc
|
||||
{x = 0, y = 0, z = 0}, --maxacc
|
||||
0.5, --minexptime
|
||||
1, --maxexptime
|
||||
1, --minsize
|
||||
2, --maxsize
|
||||
false, --collisiondetection
|
||||
"nether_particle.png" --texture
|
||||
)
|
||||
minetest.add_particlespawner({
|
||||
amount = 32,
|
||||
time = 4,
|
||||
minpos = {x = pos.x - 0.25, y = pos.y - 0.25, z = pos.z - 0.25},
|
||||
maxpos = {x = pos.x + 0.25, y = pos.y + 0.25, z = pos.z + 0.25},
|
||||
minvel = {x = -0.8, y = -0.8, z = -0.8},
|
||||
maxvel = {x = 0.8, y = 0.8, z = 0.8},
|
||||
minacc = {x = 0, y = 0, z = 0},
|
||||
maxacc = {x = 0, y = 0, z = 0},
|
||||
minexptime = 0.5,
|
||||
maxexptime = 1,
|
||||
minsize = 1,
|
||||
maxsize = 2,
|
||||
collisiondetection = false,
|
||||
texture = "nether_particle.png",
|
||||
})
|
||||
for _, obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
|
||||
if obj:is_player() then
|
||||
local meta = minetest.get_meta(pos)
|
||||
|
Loading…
x
Reference in New Issue
Block a user