Add label to all ABMs

This commit is contained in:
Wuzzy 2017-05-15 00:45:54 +02:00
parent ad73e81a64
commit da3205837b
10 changed files with 42 additions and 10 deletions

View file

@ -5,6 +5,7 @@ function mcl_farming:add_plant(identifier, full_grown, names, interval, chance)
plant_lists[identifier].full_grown = full_grown
plant_lists[identifier].names = names
minetest.register_abm({
label = string.format("Farming plant growth (%s)", identifier),
nodenames = names,
interval = interval,
chance = chance,