From 735e1d1a44508a01ddcc5c6edde77c8651e34e2e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 3 Mar 2019 09:16:21 +0100 Subject: [PATCH] - allow localization of the fallback string "Person". The corresponding text is in the translation spreadsheet which isn't part of the repo yet. --- wadsrc/static/zscript/ui/menu/conversationmenu.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/ui/menu/conversationmenu.zs b/wadsrc/static/zscript/ui/menu/conversationmenu.zs index dccfc6566..58516bff7 100644 --- a/wadsrc/static/zscript/ui/menu/conversationmenu.zs +++ b/wadsrc/static/zscript/ui/menu/conversationmenu.zs @@ -391,7 +391,7 @@ class ConversationMenu : Menu } else { - speakerName = players[consoleplayer].ConversationNPC.GetTag("Person"); + speakerName = players[consoleplayer].ConversationNPC.GetTag("$TXT_PERSON"); }