Clean up protocol docs

This commit is contained in:
Griatch 2022-11-27 11:38:50 +01:00
parent f2c64e2903
commit 20520d99d5
5 changed files with 36 additions and 79 deletions

View file

@ -1,9 +1,9 @@
# Character Creator
Commands for managing and initiating an in-game character-creation menu.
Contribution by InspectorCaracal, 2022
Commands for managing and initiating an in-game character-creation menu.
## Installation
In your game folder `commands/default_cmdsets.py`, import and add

View file

@ -44,7 +44,7 @@ Evennia has a [contrib](./Contribs-Overview.md) directory which contains optiona
It's often a good idea to import useful resources in `__init__.py` to make it easier to import them.
- Your code should abide by the [Evennia Style Guide](../Coding/Evennia-Code-Style.md). Write it to be easy to read.
- Your contribution _must_ be covered by [unit tests](../Coding/Unit-Testing.md). Put your tests in a module `tests.py` under your contrib folder (as seen above) - Evennia will find them automatically.
- Your contribution _must_ be covered by [unit tests](../Coding/Unit-Testing.md). Put your tests in a module `tests.py` under your contrib folder (as seen above) - Evennia will find them automatically. Use a folder `tests/` to group your tests if there are many of them across multiple modules.
- The `README.md` file will be parsed and converted into a document linked from [the contrib overview page](./Contribs-Overview.md). It needs to be on the following form:
```markdown

View file

@ -542,9 +542,9 @@ It is a common design pattern in RPGs, particularly action games.
### `character_creator`
_Commands for managing and initiating an in-game character-creation menu._
_Contribution by InspectorCaracal, 2022_
Contribution by InspectorCaracal, 2022
Commands for managing and initiating an in-game character-creation menu.
[Read the documentation](./Contrib-Character-Creator.md) - [Browse the Code](evennia.contrib.rpg.character_creator)