[nether] Update to Git commit 1903dfc:

https://github.com/AntumDeluge/mtmod-nether/tree/1903dfc
This commit is contained in:
AntumDeluge 2017-06-01 13:15:32 -07:00
parent 4a963ca20b
commit 99929f00cf
3 changed files with 17 additions and 18 deletions

View File

@ -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.moremesecons]: https://github.com/AntumDeluge/mtmp-moremesecons/tree/cae948e
[patch.moreores]: https://github.com/AntumDeluge/mtmod-moreores/tree/8b874f6 [patch.moreores]: https://github.com/AntumDeluge/mtmod-moreores/tree/8b874f6
[patch.mydoors]: https://github.com/AntumDeluge/mtmp-mydoors/tree/e36c9d1 [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.pipeworks]: https://github.com/AntumDeluge/mtmod-pipeworks/tree/81480a5
[patch.playeranim]: https://github.com/AntumDeluge/mtmod-playeranim/tree/54a4cb6 [patch.playeranim]: https://github.com/AntumDeluge/mtmod-playeranim/tree/54a4cb6
[patch.quartz]: https://github.com/AntumDeluge/mtmod-quartz/tree/d23dabd [patch.quartz]: https://github.com/AntumDeluge/mtmod-quartz/tree/d23dabd

View File

@ -1,4 +1,3 @@
stairs stairs
default default
moreblocks? moreblocks?
craft_guide?

View File

@ -246,22 +246,22 @@ minetest.register_abm({
interval = 1, interval = 1,
chance = 2, chance = 2,
action = function(pos, node) action = function(pos, node)
minetest.add_particlespawner( minetest.add_particlespawner({
32, --amount amount = 32,
4, --time time = 4,
{x = pos.x - 0.25, y = pos.y - 0.25, z = pos.z - 0.25}, --minpos minpos = {x = pos.x - 0.25, y = pos.y - 0.25, z = pos.z - 0.25},
{x = pos.x + 0.25, y = pos.y + 0.25, z = pos.z + 0.25}, --maxpos maxpos = {x = pos.x + 0.25, y = pos.y + 0.25, z = pos.z + 0.25},
{x = -0.8, y = -0.8, z = -0.8}, --minvel minvel = {x = -0.8, y = -0.8, z = -0.8},
{x = 0.8, y = 0.8, z = 0.8}, --maxvel maxvel = {x = 0.8, y = 0.8, z = 0.8},
{x = 0, y = 0, z = 0}, --minacc minacc = {x = 0, y = 0, z = 0},
{x = 0, y = 0, z = 0}, --maxacc maxacc = {x = 0, y = 0, z = 0},
0.5, --minexptime minexptime = 0.5,
1, --maxexptime maxexptime = 1,
1, --minsize minsize = 1,
2, --maxsize maxsize = 2,
false, --collisiondetection collisiondetection = false,
"nether_particle.png" --texture texture = "nether_particle.png",
) })
for _, obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do for _, obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
if obj:is_player() then if obj:is_player() then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)