diff --git a/docs/source/Contribs/Contrib-Character-Creator.md b/docs/source/Contribs/Contrib-Character-Creator.md index d93eb8768c..08c9d68f70 100644 --- a/docs/source/Contribs/Contrib-Character-Creator.md +++ b/docs/source/Contribs/Contrib-Character-Creator.md @@ -1,4 +1,4 @@ -# Character Creator contrib +# Character Creator Commands for managing and initiating an in-game character-creation menu. diff --git a/docs/source/Setup/Installation.md b/docs/source/Setup/Installation.md index 2a7a85e35b..a39f091d5a 100644 --- a/docs/source/Setup/Installation.md +++ b/docs/source/Setup/Installation.md @@ -16,7 +16,7 @@ Evennia is managed from the terminal (console/Command Prompt on Windows). Once pip install evennia -Optional: If you use a [contrib](Contribs) that warns you that it needs additional packages, you can +Optional: If you use a [contrib](../Contribs/Contribs-Overview.md) that warns you that it needs additional packages, you can install all extra dependencies with pip install evennia[extra] diff --git a/docs/source/Setup/Setup-Overview.md b/docs/source/Setup/Setup-Overview.md index d4becc497c..099fb1fccb 100644 --- a/docs/source/Setup/Setup-Overview.md +++ b/docs/source/Setup/Setup-Overview.md @@ -2,7 +2,7 @@ This sums up all steps of maintaining your Evennia game from first installation to production release. -## Installation & running +## Installation and running ```{toctree} :maxdepth: 2 @@ -17,7 +17,7 @@ Installation-Non-Interactive Start-Stop-Reload ``` -## Settings and configuration +## Configuration ```{toctree} :maxdepth: 2 diff --git a/docs/source/index.md b/docs/source/index.md index f50a72ae2d..3acad51bb9 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -10,17 +10,16 @@ # Evennia Documentation -This is the manual of [Evennia](https://www.evennia.com), the open source Python -`MU*` creation system. Use the Searchbar on the left to discover interesting articles. +This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. -- [Evennia Introduction](./Evennia-Introduction.md) -- [How to contribute and get help](./Contributing.md) +- [Evennia Introduction](./Evennia-Introduction.md) - what is this? +- [Getting help and Contribute](./Contributing.md) - when you get stuck or want to chip in ## Setup -- [Installation](Setup/Installation.md#installation-running) +- [Installation and running](Setup/Setup-Overview.md#installation-and-running) - getting started! - [Starting, Stopping and Reloading](Setup/Start-Stop-Reload.md) - how to manage the Evennia server -- [Settings and configurations](Setup/Setup-Overview.md#configuring) - how to configure the server and integrations +- [Configuration](Setup/Setup-Overview.md#configuration) - how to set up your server the way you like it - [Going public](Setup/Setup-Overview.md#going-public) - taking your game online ## Howtos and Tutorials diff --git a/evennia/contrib/rpg/character_creator/__init__.py b/evennia/contrib/rpg/character_creator/__init__.py new file mode 100644 index 0000000000..facecda61b --- /dev/null +++ b/evennia/contrib/rpg/character_creator/__init__.py @@ -0,0 +1,7 @@ +""" +Chargen system - Inspector Caracal, 2022 + +""" + +from .character_creator import ContribChargenAccount # noqa +from .character_creator import ContribCmdCharCreate # noqa