From 7573e415e2431a48f7b47b9c7277c98e5e1c389d Mon Sep 17 00:00:00 2001 From: sundance <19597322+sundance@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:58:55 +0100 Subject: [PATCH] Goodbye is one word (#4863) --- data/npc/lib/npcsystem/npchandler.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/npc/lib/npcsystem/npchandler.lua b/data/npc/lib/npcsystem/npchandler.lua index 27127594db..b0c5726871 100644 --- a/data/npc/lib/npcsystem/npchandler.lua +++ b/data/npc/lib/npcsystem/npchandler.lua @@ -77,7 +77,7 @@ if not NpcHandler then messages = { -- These are the default replies of all npcs. They can/should be changed individually for each npc. [MESSAGE_GREET] = "Greetings, |PLAYERNAME|.", - [MESSAGE_FAREWELL] = "Good bye, |PLAYERNAME|.", + [MESSAGE_FAREWELL] = "Goodbye, |PLAYERNAME|.", [MESSAGE_BUY] = "Do you want to buy |ITEMCOUNT| |ITEMNAME| for |TOTALCOST| gold coins?", [MESSAGE_ONBUY] = "Here you are.", [MESSAGE_BOUGHT] = "Bought |ITEMCOUNT|x |ITEMNAME| for |TOTALCOST| gold.", @@ -90,15 +90,15 @@ if not NpcHandler then [MESSAGE_NEEDITEM] = "You do not have this object.", [MESSAGE_NEEDSPACE] = "You do not have enough capacity.", [MESSAGE_NEEDMORESPACE] = "You do not have enough capacity for all items.", - [MESSAGE_IDLETIMEOUT] = "Good bye.", - [MESSAGE_WALKAWAY] = "Good bye.", + [MESSAGE_IDLETIMEOUT] = "Goodbye.", + [MESSAGE_WALKAWAY] = "Goodbye.", [MESSAGE_DECLINE] = "Then not.", [MESSAGE_SENDTRADE] = "Of course, just browse through my wares.", [MESSAGE_NOSHOP] = "Sorry, I'm not offering anything.", [MESSAGE_ONCLOSESHOP] = "Thank you, come back whenever you're in need of something else.", [MESSAGE_ALREADYFOCUSED] = "|PLAYERNAME|, I am already talking to you.", - [MESSAGE_WALKAWAY_MALE] = "Good bye.", - [MESSAGE_WALKAWAY_FEMALE] = "Good bye." + [MESSAGE_WALKAWAY_MALE] = "Goodbye.", + [MESSAGE_WALKAWAY_FEMALE] = "Goodbye." } }