mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
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:
parent
b351deaadd
commit
21d571d89a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue