add abm descriptions (thx Niklp)
This commit is contained in:
parent
ed8320ee77
commit
de077a68c7
3
init.lua
3
init.lua
@ -706,6 +706,7 @@ minetest.register_node("bees:hive_artificial", {
|
|||||||
--
|
--
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
|
label = "spawn bee particles",
|
||||||
nodenames = {"bees:hive_artificial", "bees:hive_wild", "bees:hive_industrial"},
|
nodenames = {"bees:hive_artificial", "bees:hive_wild", "bees:hive_industrial"},
|
||||||
interval = 10,
|
interval = 10,
|
||||||
chance = 4,
|
chance = 4,
|
||||||
@ -752,6 +753,7 @@ minetest.register_abm({
|
|||||||
|
|
||||||
-- spawn ABM. This should be changed to a more realistic type of spawning
|
-- spawn ABM. This should be changed to a more realistic type of spawning
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
|
label = "spawn bee hives",
|
||||||
nodenames = {"group:leaves"},
|
nodenames = {"group:leaves"},
|
||||||
neighbors = {"air"},
|
neighbors = {"air"},
|
||||||
interval = 300,
|
interval = 300,
|
||||||
@ -785,6 +787,7 @@ minetest.register_abm({
|
|||||||
|
|
||||||
-- spawning bees around bee hive
|
-- spawning bees around bee hive
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
|
label = "spawn bees around bee hives",
|
||||||
nodenames = {"bees:hive_wild", "bees:hive_artificial", "bees:hive_industrial"},
|
nodenames = {"bees:hive_wild", "bees:hive_artificial", "bees:hive_industrial"},
|
||||||
neighbors = {"group:flower", "group:leaves"},
|
neighbors = {"group:flower", "group:leaves"},
|
||||||
interval = 30,
|
interval = 30,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user