mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Update Beginner-Tutorial-Characters.md
Fix fstring
This commit is contained in:
parent
3d69417ccf
commit
b72b675bae
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class LivingMixin:
|
|||
healed = min(damage, hp)
|
||||
self.hp += healed
|
||||
|
||||
self.msg("You heal for {healed} HP.")
|
||||
self.msg(f"You heal for {healed} HP.")
|
||||
|
||||
def at_pay(self, amount):
|
||||
"""When paying coins, make sure to never detract more than we have"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue