From 2bd7117fbcc7a9ce1b2ec2ad60ab83fa055fb6da Mon Sep 17 00:00:00 2001 From: iLPdev Date: Fri, 27 Oct 2023 11:21:02 -0700 Subject: [PATCH] docs(Sittable-Object): :memo: add terminal punctuation to do_stand code --- .../Part1/Beginner-Tutorial-Making-A-Sittable-Object.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 03c048eb44..2c78bee66f 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 @@ -108,7 +108,7 @@ Let's continue: else: self.db.sitter = None del stander.db.is_sitting - stander.msg(f"You stand up from {self.key}") + stander.msg(f"You stand up from {self.key}.") ``` This is the inverse of sitting down; we need to do some cleanup. @@ -182,7 +182,7 @@ class Sittable(DefaultObject): else: self.db.sitter = None del stander.db.is_sitting - stander.msg(f"You stand up from {self.key}") + stander.msg(f"You stand up from {self.key}.") ``` - **Line 15**: We grab the `adjective` Attribute. Using `self.db.adjective or "on"` here means that if the Attribute is not set (is `None`/falsy) the default "on" string will be assumed.