[game] fix ambients stopping and swamp blimp tethers (#1389)

This commit is contained in:
water111
2022-05-30 15:21:41 -04:00
committed by GitHub
parent 44664be7e1
commit 3b6200be95
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -29692,7 +29692,7 @@
;; - Functions
(define-extern swamp-rope-init-by-other (function vector entity-actor none :behavior swamp-rope))
(define-extern swamp-blimp-setup (function none :behavior swamp-blimp))
(define-extern swamp-blimp-setup (function int :behavior swamp-blimp))
(define-extern tetherrock-get-info (function entity tetherrock-info))
(define-extern swamp-rope-post (function none :behavior swamp-rope))
(define-extern swamp-rope-break-code (function quaternion :behavior swamp-rope))
+1 -1
View File
@@ -2382,7 +2382,7 @@
;; The defstate macro isn't defined yet, so we do it manually.
(define dead-state
(the (state process) (new 'static 'state
:name #f
:name 'dead-state
:next #f
:exit #f
:code #f
+1 -1
View File
@@ -1630,8 +1630,8 @@
(vector-normalize! (the-as vector (-> self gondola-tilt-oscillator)) 1.0)
)
)
gp-0
)
(none)
)
)
+1 -2
View File
@@ -1744,7 +1744,6 @@
)
;; definition for function swamp-blimp-setup
;; INFO: Return type mismatch int vs none.
(defbehavior swamp-blimp-setup swamp-blimp ()
(rlet ((vf0 :class vf))
(init-vf0-vector)
@@ -1824,8 +1823,8 @@
(vector-normalize! (the-as vector (-> self gondola-tilt-oscillator)) 1.0)
)
)
gp-0
)
(none)
)
)