From 8f47606a2af5fcdb8484ed30cdc4a3647626a9b5 Mon Sep 17 00:00:00 2001 From: evilchili Date: Fri, 19 Jan 2024 14:41:26 -0800 Subject: [PATCH] fixing full_name --- npc/types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/npc/types.py b/npc/types.py index 5525f26..b0f83d2 100644 --- a/npc/types.py +++ b/npc/types.py @@ -164,7 +164,8 @@ class NPC: @property def full_name(self): - return self.names.fullname + """Legacy interface""" + return self.name @property def is_noble(self) -> bool: