From c6307dde35a1373659859efda489aafed77b3f11 Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Sun, 9 Apr 2017 14:07:34 -0400 Subject: [PATCH] Forgot a nil in the "send game message" params, otherwise wrong overload is run. --- data/scripts/commands/NpcLinkshellChatCommand.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts/commands/NpcLinkshellChatCommand.lua b/data/scripts/commands/NpcLinkshellChatCommand.lua index e301614c..5c015e6c 100644 --- a/data/scripts/commands/NpcLinkshellChatCommand.lua +++ b/data/scripts/commands/NpcLinkshellChatCommand.lua @@ -14,7 +14,7 @@ to hit some ID, add "nils". local function handleAdventurersGuild(player) if (player:HasQuest(110006) == true) then local man0g1Quest = player:GetQuest("Man0g1"); - player:SendGameMessage(man0g1Quest, 330, 39, 1300018); + player:SendGameMessage(man0g1Quest, 330, 39, 1300018, nil); end end