More cleanup of combat tutorial lessons

This commit is contained in:
Griatch 2023-05-19 17:10:42 +02:00
parent 40023923e1
commit 4abca72077
6 changed files with 74 additions and 64 deletions

View file

@ -13,7 +13,6 @@ import evennia
roses = evennia.search_object(key="rose")
accts = evennia.search_account(key="MyAccountName", email="foo@bar.com")
```
```
```{sidebar} Querysets
@ -73,7 +72,7 @@ class CmdQuickFind(Command):
result = self.caller.search(query)
if not result
return
self.caller.msg(f"Found match for {query}: {foo}")
self.caller.msg(f"Found match for {query}: {foo}")
```
Remember, `self.caller` is the one calling the command. This is usually a Character, which