From fb0fa25536f69df49e3acb0f0e0d699fb4e8ec5f Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 19 Dec 2024 09:27:24 +0100 Subject: [PATCH] Fix armchair tutorial code example to match repo --- CHANGELOG.md | 2 +- .../Part1/Beginner-Tutorial-Making-A-Sittable-Object.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d66f39e04..787abdfcb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ finds `big sword` even if another type of sword is around (InspectorCaracal) - [Fix][pull3690]: In searches, allow special 'here' and 'me' keywords only be valid queries unless current location and/or caller is in valid search candidates respectively (InspectorCaracal) -- [Docs]: Fixes from InspectorCaracal +- [Docs]: Fixes from InspectorCaracal, Griatch [pull3633]: https://github.com/evennia/evennia/pull/3633 diff --git a/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md b/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md index d2266364e7..cb3a6e3d4c 100644 --- a/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md +++ b/docs/source/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md @@ -386,7 +386,7 @@ We don't need a new CmdSet for this, instead we will add this to the default Cha # ... from commands import sittables -class CharacterCmdSet(CmdSet): +class CharacterCmdSet(default_cmds.CharacterCmdSet): """ (docstring) """