mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Update CHANGELOG. Resolve typo in sittable chair tutorial. Resolve #3408
This commit is contained in:
parent
3bebed707e
commit
e24f4141ba
7 changed files with 147 additions and 207 deletions
|
|
@ -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)
|
||||
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue