Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedb0T committed Dec 14, 2023
1 parent 996e2b2 commit 4636617
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions goal_src/jak2/engine/entity/entity.gc
Original file line number Diff line number Diff line change
Expand Up @@ -2005,9 +2005,9 @@
)

((drill-metalhead-eggs)
(set! (-> arg0 root scale x) (rand-vu-float-range 1.1 2.0))
(set! (-> arg0 root scale y) (rand-vu-float-range 1.1 2.0))
(set! (-> arg0 root scale z) (rand-vu-float-range 1.1 2.0))
(set! (-> arg0 root scale x) (rand-vu-float-range 1.0 1.0))
(set! (-> arg0 root scale y) (rand-vu-float-range 1.0 1.0))
(set! (-> arg0 root scale z) (rand-vu-float-range 1.0 1.0))
)

(else
Expand Down
5 changes: 4 additions & 1 deletion goal_src/jak2/levels/dig/dig-digger.gc
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,10 @@
)
(('attack)
(let ((v1-2 (the-as attack-info (-> block param 1))))
(when (and (logtest? (-> v1-2 mask) (attack-mask mode)) (= (-> v1-2 mode) 'board))



(when (and (logtest? (-> v1-2 mask) (attack-mask mode)) #t)
(cpad-set-buzz! (-> *cpad-list* cpads 0) 0 85 (seconds 0.1))
(go-virtual break-it)
)
Expand Down

0 comments on commit 4636617

Please sign in to comment.