From be0c44174a83a218308c97aae1ee451adce8032a Mon Sep 17 00:00:00 2001 From: evilchili Date: Tue, 4 Jul 2023 11:44:37 -0700 Subject: [PATCH] fixing uncached full names on humans --- npc/generator/human.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/npc/generator/human.py b/npc/generator/human.py index 1e966d7..5f054b3 100644 --- a/npc/generator/human.py +++ b/npc/generator/human.py @@ -6,7 +6,3 @@ class NPC(BaseNPC): ancestry = 'Human' language = common.CommonPerson() - - @property - def full_name(self): - return ' '.join([str(x).capitalize() for x in self.language.person()])