From a77d99767c693778c681b6119d3c8e962cd6d753 Mon Sep 17 00:00:00 2001 From: Mill House Date: Mon, 4 May 2026 23:42:41 -0400 Subject: [PATCH] [lua] Fix Kumhau the Flashfrost Naakual cutscene exit position The X coordinate of the post-cutscene setPos call in mission 3-6-1 was missing its negative sign, teleporting the player into a wall in Kamihr Drifts after finishing the cutscene. Add the missing minus sign so the player lands at the intended location. Fixes #7234 --- scripts/missions/soa/3_6_1_Kumhau_the_Flashfrost_Naakual.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/missions/soa/3_6_1_Kumhau_the_Flashfrost_Naakual.lua b/scripts/missions/soa/3_6_1_Kumhau_the_Flashfrost_Naakual.lua index 31d3d268dbb..9fd122618ae 100644 --- a/scripts/missions/soa/3_6_1_Kumhau_the_Flashfrost_Naakual.lua +++ b/scripts/missions/soa/3_6_1_Kumhau_the_Flashfrost_Naakual.lua @@ -87,7 +87,7 @@ mission.sections = { [27] = function(player, csid, option, npc) mission:setVar(player, 'Status', 2) - player:setPos(344.003, 40.676, -381.140, 12, xi.zone.KAMIHR_DRIFTS) + player:setPos(-344.003, 40.676, -381.140, 12, xi.zone.KAMIHR_DRIFTS) end, }, },