From 759bd4ace2efe793c599cfeee812ece525d6f5f4 Mon Sep 17 00:00:00 2001 From: nate2s Date: Sat, 23 Sep 2023 19:28:18 -0400 Subject: [PATCH] fix return_appearance typo --- evennia/objects/objects.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/evennia/objects/objects.py b/evennia/objects/objects.py index 4dc15ce729..ffd9e21655 100644 --- a/evennia/objects/objects.py +++ b/evennia/objects/objects.py @@ -212,7 +212,7 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase): objects = ObjectManager() - # populated by `return_apperance` + # populated by `return_appearance` appearance_template = """ {header} |c{name}|n @@ -1201,7 +1201,7 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase): self.at_access(result, accessing_obj, access_type, **kwargs) return result - # name and return_apperance hooks + # name and return_appearance hooks def get_display_name(self, looker=None, **kwargs): """ @@ -2111,7 +2111,7 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase): Notes: This method shouldn't add extra coloring to the names beyond what is already given by the .get_display_name() (and the .name field) already. - Per-type coloring can be applied in `return_apperance`. + Per-type coloring can be applied in `return_appearance`. """ # a mapping {'exits': [...], 'characters': [...], 'things': [...]}