Fix Jak 2 warp gates (#2244)

This commit is contained in:
Matt Dallmeyer 2023-02-24 11:33:27 -07:00 committed by GitHub
parent 2d8ad39fea
commit e89f0770dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 13 deletions

View File

@ -3392,7 +3392,7 @@
[527, "a0", "vector"],
[681, "v1", "fact-info-target"],
[699, "v1", "fact-info-target"],
[866, "v1", "(state target)"],
[866, "v1", "(state object object object object target)"],
[894, "a0", "process"],
[517, "v1", "float"]
],

View File

@ -1028,12 +1028,13 @@
)
)
(('change-state)
enter-state
(-> arg3 param 1)
(-> arg3 param 2)
(-> arg3 param 3)
(-> arg3 param 4)
(go (the-as (state target) (-> arg3 param 0)))
(go
(the-as (state object object object object target) (-> arg3 param 0))
(-> arg3 param 1)
(-> arg3 param 2)
(-> arg3 param 3)
(-> arg3 param 4)
)
)
(('tobot)
(set! v0-0 (-> arg3 param 0))

View File

@ -1034,12 +1034,13 @@
)
)
(('change-state)
enter-state
(-> arg3 param 1)
(-> arg3 param 2)
(-> arg3 param 3)
(-> arg3 param 4)
(go (the-as (state target) (-> arg3 param 0)))
(go
(the-as (state object object object object target) (-> arg3 param 0))
(-> arg3 param 1)
(-> arg3 param 2)
(-> arg3 param 3)
(-> arg3 param 4)
)
)
(('tobot)
(set! v0-0 (-> arg3 param 0))