mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Merge pull request #3133 from Machine-Garden-MUD/main
Fix f-string in clothing contrib
This commit is contained in:
commit
37d49dc852
1 changed files with 1 additions and 1 deletions
|
|
@ -277,7 +277,7 @@ class ContribClothing(DefaultObject):
|
|||
else:
|
||||
message = f"$You() $conj(put) on {self.name}"
|
||||
if to_cover:
|
||||
message += ", covering {iter_to_str(to_cover)}"
|
||||
message += f", covering {iter_to_str(to_cover)}"
|
||||
wearer.location.msg_contents(message + ".", from_obj=wearer)
|
||||
|
||||
def remove(self, wearer, quiet=False):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue