mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-24 17:50:37 +01:00
Oooops
- Missing modification on dungeon masters, I was exluding node only if I had to includ them... Things are correct now.
This commit is contained in:
parent
5314a1d30b
commit
b185b9a61f
@ -107,13 +107,14 @@ 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
|
||||
local including = minetest.registered_nodes[n].groups["unbreakable"] ~= nil
|
||||
local excluding = minetest.registered_nodes[n].groups["unbreakable"] ~= nil
|
||||
or n:split(":")[1] == "nether"
|
||||
for _,i in ipairs(excluded) do
|
||||
if i == n then including = false end
|
||||
if i == n then including = true end
|
||||
end
|
||||
|
||||
--if p.y < -19600 and including and n:split(":")[1] == "nether" then
|
||||
if including then
|
||||
if excluding then
|
||||
return
|
||||
end
|
||||
if n ~= "default:obsidian" and n ~= "ethereal:obsidian_brick" then
|
||||
|
Loading…
Reference in New Issue
Block a user