Add notice about Minetest not supporting capital letters in modnames

This commit is contained in:
Elias Fleckenstein 2021-10-25 20:41:09 +02:00
parent da5e703675
commit f3d16d264c
No known key found for this signature in database
GPG Key ID: 06927A5199D6C9B2
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ optional)
### Code Guidelines
* Each mod must provide `mod.conf`.
* Mod names are snake case, and newly added mods start with `mcl_`, e.g.
`mcl_core`, `mcl_farming`, `mcl_monster_eggs`
`mcl_core`, `mcl_farming`, `mcl_monster_eggs`. Keep in mind Minetest
does not support capital letters in mod names.
* To export functions, store them inside a global table named like the
mod, e.g.