override mushroom spread abm

This commit is contained in:
tenplus1 2021-04-29 19:42:31 +01:00
parent 21431b0ceb
commit 90cdf94ea6
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Ethereal Mapgen mod for Minetest (works on all except v6)
- Added fishing api to add new items (read API.txt file)
- Certain fish can only be found in specific biomes
- Rename textures so they begin with ethereal_ (sorry texture pack folks)
- Override mushroom spread abm to use "group:mushroom"
### 1.27

View File

@ -226,6 +226,12 @@ for _, ab in pairs(minetest.registered_abms) do
ab.nodenames = {"default:papyrus", "ethereal:bamboo"}
ab.neighbors = {"group:soil"}
ab.action = grow_papyrus
elseif label == "Mushroom spread" then
--ab.interval = 1
--ab.chance = 1
ab.nodenames = {"group:mushroom"}
end
end