From bcee53f95ed01c38a4a0a94d8e24f7ec1b8a8487 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 23 Jul 2023 20:45:36 +0200 Subject: [PATCH] More doc cleanups --- docs/source/Contribs/Contrib-Multidescer.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/source/Contribs/Contrib-Multidescer.md b/docs/source/Contribs/Contrib-Multidescer.md index c1b615fe51..cb4ff5ea5a 100644 --- a/docs/source/Contribs/Contrib-Multidescer.md +++ b/docs/source/Contribs/Contrib-Multidescer.md @@ -14,12 +14,9 @@ It adds a new `+desc` command (where the + is optional in Evennia). ## Installation -Edit `mygame/commands/default_cmdsets.py` and add -`from evennia.contrib.game_systems.multidescer import CmdMultiDesc` to the top. - -Next, look up the `at_cmdset_create` method of the `CharacterCmdSet` -class and add a line `self.add(CmdMultiDesc())` to the end -of it. +Like for any custom command, you just add the new `+desc` command to a default +cmdset: Import the `evennia.contrib.game_systems.multidescer.CmdMultiDesc` into +`mygame/commands/default_cmdsets.py` and add it to the `CharacterCmdSet` class. Reload the server and you should have the `+desc` command available (it will replace the default `desc` command).