Added forum link to readme

This commit is contained in:
tenplus1 2015-01-05 18:51:23 +00:00
parent aa237887ee
commit db77609139
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
-= MOBS-MOD for MINETEST =-
by PilzAdam, KrupnovPavel, Zeg9 and TenPlus1
https://forum.minetest.net/viewtopic.php?f=9&t=9917
This mod contains the following additions:
- Giant Spiders (found in desert caves, drop string when killed)

View File

@ -97,7 +97,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.env:get_node(p).name
if n ~= "default:obsidian" and n ~= "ethereal:obsidian_brick" then
if n ~= "default:obsidian" and n ~= "default:obsidianbrick" and then
if minetest.registered_nodes[n].groups.flammable or math.random(1, 100) <= 30 then
minetest.env:set_node(p, {name="fire:basic_flame"})
else