api.txt updated with mapgen_dirt entry

This commit is contained in:
tenplus1 2022-10-01 07:17:07 +01:00
parent 561903d075
commit 8e3a85546c
1 changed files with 11 additions and 0 deletions

11
api.txt
View File

@ -6,6 +6,17 @@ Welcome to the world of mobs in minetest and hopefully an easy guide to defining
your own mobs and having them appear in your worlds.
Quick Note
----------
Since the mobs redo api checks for nodes around the mob to function, it relies on a
default node incase anything goes wrong, so in the default game this is default:dirt
but for any custom game please make sure the following line is registered with your
preferred dirt node of choice:
minetest.register_alias("mapgen_dirt", "mymod:my_dirt_node")
Registering Mobs
----------------