Fix various typos

This commit is contained in:
amfl 2023-01-30 16:51:30 +13:00
parent 5d0db7fb3b
commit 00c2c92472
8 changed files with 11 additions and 9 deletions

View file

@ -344,7 +344,7 @@ class CmdIC(COMMAND_DEFAULT_CLASS):
]
if not character_candidates:
# fall back to global search only if Builder+ has no
# playable_characers in list and is not standing in a room
# playable_characters in list and is not standing in a room
# with a matching char.
character_candidates.extend(
[

View file

@ -609,7 +609,7 @@ Variables you can use in this event:
"""
EXIT_TRAVERSE = """
After the characer has traversed through this exit.
After the character has traversed through this exit.
This event is called after a character has traversed through this
exit. Traversing cannot be prevented using 'deny()' at this
point. The character will be in a different room and she will

View file

@ -386,8 +386,9 @@ class CraftingRecipe(CraftingRecipeBase):
{"key": "Bag of flour",
"typeclass": "typeclasses.food.Flour",
"desc": "A small bag of flour."
"tags": [("flour", "crafting_material"),
"tags": [("flour", "crafting_material")],
}
]
class BreadRecipe(CraftRecipe):
name = "bread"
@ -397,6 +398,7 @@ class CraftingRecipe(CraftingRecipeBase):
{"key": "bread",
"desc": "A tasty bread."
}
]
## Properties on the class level: