From dcd7ae209c4b861093ad71f4914124b4b6986c29 Mon Sep 17 00:00:00 2001 From: goblinmob <72633955+goblinmob@users.noreply.github.com> Date: Mon, 26 Jun 2023 07:25:05 -0500 Subject: [PATCH] Update clothing.py Changed "rturn" in line 563 to "return" --- evennia/contrib/game_systems/clothing/clothing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/game_systems/clothing/clothing.py b/evennia/contrib/game_systems/clothing/clothing.py index 5143b9d9af..a6639ad198 100644 --- a/evennia/contrib/game_systems/clothing/clothing.py +++ b/evennia/contrib/game_systems/clothing/clothing.py @@ -560,7 +560,7 @@ class CmdCover(MuxCommand): if not inherits_from(cover_with, ContribClothing): self.caller.msg(f"{cover_with.name} isn't something you can wear.") - rturn + return if cover_with.db.clothing_type in CLOTHING_TYPE_CANT_COVER_WITH: self.caller.msg(f"You can't cover anything with {cover_with.name}.")