From ca6f0ea6452b25de5c63247fe24d61c13fb0b664 Mon Sep 17 00:00:00 2001 From: Xaver-DaRed Date: Thu, 26 Feb 2026 17:42:41 +0100 Subject: [PATCH] Fix ToAU mission 7 getting stuck on CS option --- scripts/missions/toau/07_Westerly_Winds.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/missions/toau/07_Westerly_Winds.lua b/scripts/missions/toau/07_Westerly_Winds.lua index e0c95909ff0..5c47e8e3c9c 100644 --- a/scripts/missions/toau/07_Westerly_Winds.lua +++ b/scripts/missions/toau/07_Westerly_Winds.lua @@ -41,6 +41,14 @@ mission.sections = end, }, + onEventUpdate = + { + [3028] = function(player, csid, option, npc) + local param1 = option == 2 and 0 or 2 -- Hides "It's a prince" option after selecting it. + player:updateEvent(param1, 1, 0, 0, 0, 0, 0, 0, 0) + end, + }, + onEventFinish = { [3027] = function(player, csid, option, npc)