[lua] Fix Kumhau the Flashfrost Naakual cutscene exit position#9950
Merged
Xaver-DaRed merged 1 commit intoMay 5, 2026
Merged
Conversation
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 LandSandBoat#7234
Contributor
|
do you have a cap for this? |
Contributor
Author
Contributor
|
its close enough maybe, actual coord is -344.002, 040.675, -381.140 which compared to Cap: |
WinterSolstice8
approved these changes
May 5, 2026
Xaver-DaRed
approved these changes
May 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I affirm:
What does this pull request do?
Closes #7234.
The X coordinate of the post-cutscene
setPoscall in SoA mission 3-6-1 (Kumhau, the Flashfrost Naakual) was missing its negative sign. After the cutscene at event 27 finishes, the player is teleported to(344.003, 40.676, -381.140)in Kamihr Drifts, which lands them out-of-bounds. The intended location is(-344.003, 40.676, -381.140).This PR adds the missing minus sign so the player lands at the intended spot.
Steps to test these changes
In Kamihr Drifts (zone 267), with GM rights:
!pos 344.003 40.676 -381.140 267— observe player is teleported out-of-bounds (into sky/void area), reproducing the bug.!pos -344.003 40.676 -381.140 267— observe player lands on solid, walkable terrain inside the zone, confirming the fix.Verified locally — buggy coordinates land in a void, fixed coordinates land on solid Kamihr Drifts terrain.