Beginner Tutorial Typo Fix

Fixed typo on: https://www.evennia.com/docs/latest/Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.html

Made change from "is_resting" to "is_sitting".
This commit is contained in:
Kevin 2023-06-24 11:34:40 -04:00
parent b351deaadd
commit 21d571d89a

View file

@ -39,7 +39,7 @@ class Character(DefaultCharacter):
When moving somewhere, [character.move_to](evennia.objects.objects.DefaultObject.move_to) is called. This in turn
will call `character.at_pre_move`. If this returns `False`, the move is aborted.
Here we look for an Attribute `is_resting` (which we will assign below) to determine if we are stuck on the chair or not.
Here we look for an Attribute `is_sitting` (which we will assign below) to determine if we are stuck on the chair or not.
## Making the Chair itself