Fix f-string in clothing contrib

Fixes #3132
This commit is contained in:
Wendy Wang 2023-03-06 10:45:36 +01:00
parent f66db3344d
commit d27e2c7767

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