override mushroom spread abm
This commit is contained in:
parent
21431b0ceb
commit
90cdf94ea6
@ -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
|
||||
|
||||
|
6
dirt.lua
6
dirt.lua
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user