Merge pull request #3133 from Machine-Garden-MUD/main

Fix f-string in clothing contrib
This commit is contained in:
Griatch 2023-03-10 21:17:18 +01:00 committed by GitHub
commit 37d49dc852

View file

@ -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):