Update CHANGELOG. Resolve typo in sittable chair tutorial. Resolve #3408

This commit is contained in:
Griatch 2024-01-14 18:16:19 +01:00
parent 3bebed707e
commit e24f4141ba
7 changed files with 147 additions and 207 deletions

View file

@ -604,14 +604,13 @@ class CmdStand2(Command):
key = "stand"
def func(self):
caller = self.caller
# if we are sitting, this should be set on us
sittable = caller.db.is_sitting
if not sittable:
caller.msg("You are not sitting down.")
else:
sittable.do_stand(caller)
caller = self.caller
# if we are sitting, this should be set on us
sittable = caller.db.is_sitting
if not sittable:
caller.msg("You are not sitting down.")
else:
sittable.do_stand(caller)
```