From cf38de092223764e7585e8dd1dfee33165a8ab7b Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 23 Sep 2023 22:34:48 +0200 Subject: [PATCH] Wrong chapter indent --- .../Part1/Beginner-Tutorial-Adding-Commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md b/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md index 40f5e20198..bb443a2c96 100644 --- a/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md +++ b/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md @@ -225,7 +225,7 @@ We will add this cmdset in another way, so remove it manually: > py self.cmdset.remove("commands.mycommands.MyCmdSet") -## Add the echo command to the default cmdset +### Add the echo command to the default cmdset Above we added the `echo` command to ourselves. It will _only_ be available to us and noone else in the game. But all commands in Evennia are part of command-sets, including the normal `look` and `py` commands we have been using all the while. You can easily extend the default command set with your `echo` command - this way _everyone_ in the game will have access to it!