1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 17:50:37 +01:00

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

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