The "nether" was missing

Now I won't ever forget that the itemstring for the nether's dirt is
nether:NETHERrack...
This commit is contained in:
LeMagnesium 2014-11-22 01:25:02 +01:00
parent 1f537e4b7e
commit 472c77cc46
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ mobs:register_arrow("mobs:fireball", {
for dz=-1,1 do
local p = {x=pos.x+dx, y=pos.y+dy, z=pos.z+dz}
local n = minetest.get_node(p).name
if p.y < -19600 and n ~= "nether:rack" and n:split(":")[1] == "nether" then
if p.y < -19600 and n ~= "nether:netherrack" and n:split(":")[1] == "nether" then
return
end
if n ~= "default:obsidian" and n ~= "ethereal:obsidian_brick" then