diff --git a/mod.conf b/mod.conf index 5eb348a..72846bd 100644 --- a/mod.conf +++ b/mod.conf @@ -2,3 +2,4 @@ name = nether description = Adds a deep underground realm with different mapgen that you can reach with obsidian portals. depends = stairs, default optional_depends = toolranks, moreblocks, mesecons, loot, dungeon_loot, doc_basics, fire, climate_api, ethereal, xpanes, walls +min_minetest_version = 5.8 \ No newline at end of file diff --git a/nodes.lua b/nodes.lua index 753858b..a24ffb6 100644 --- a/nodes.lua +++ b/nodes.lua @@ -668,11 +668,11 @@ local function smash_lava_crust(pos, playsound) maxexptime = 1, minsize = .2, maxsize = .8, - texture = "^[colorize:#A00:255", + texture = "[fill:1x1:#A00", glow = 8 } minetest.add_particlespawner(lava_particlespawn_def) - lava_particlespawn_def.texture = "^[colorize:#FB0:255" + lava_particlespawn_def.texture = "[fill:1x1:#FB0" lava_particlespawn_def.maxvel.y = 3 lava_particlespawn_def.glow = 12 minetest.add_particlespawner(lava_particlespawn_def) @@ -874,11 +874,11 @@ local function fumarole_onTimer(pos, elapsed) maxexptime = 1.4, minsize = .2, maxsize = .8, - texture = "^[colorize:#A00:255", + texture = "[fill:1x1:#A00", glow = 8 } minetest.add_particlespawner(embers_particlespawn_def) - embers_particlespawn_def.texture = "^[colorize:#A50:255" + embers_particlespawn_def.texture = "[fill:1x1:#A50" embers_particlespawn_def.maxvel.y = 3 embers_particlespawn_def.glow = 12 minetest.add_particlespawner(embers_particlespawn_def)