diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2025-12-13 20:08:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-13 12:08:59 -0700 |
| commit | 4e51b7d5b6a9b89deb5ef135deec0ee5f0087e7c (patch) | |
| tree | 5c9d1156a8785e1f0736a89c6fa512fae8e4a3d1 /src/engine/objects/BombKart.cpp | |
| parent | b934e98fc34964970ab5efacb2fb7c3372ae0b1a (diff) | |
Document sound effects (pr 735 from the decomp) (#589)
Co-authored-by: Jed Grabman <JedGrabman@users.noreply.github.com>
Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/engine/objects/BombKart.cpp')
| -rw-r--r-- | src/engine/objects/BombKart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/objects/BombKart.cpp b/src/engine/objects/BombKart.cpp index 4ba5ff843..3ba60d98a 100644 --- a/src/engine/objects/BombKart.cpp +++ b/src/engine/objects/BombKart.cpp @@ -148,7 +148,7 @@ void OBombKart::Tick() { circleTimer = 0; state = States::EXPLODE; Behaviour = States::EXPLODE; - player->soundEffects |= 0x400000; + player->triggers |= VERTICAL_TUMBLE_TRIGGER; player->type &= ~0x2000; } } @@ -165,9 +165,9 @@ void OBombKart::Tick() { Behaviour = States::EXPLODE; circleTimer = 0; if (IsFrappeSnowland()) { - player->soundEffects |= 0x01000000; + player->triggers |= HIT_BY_STAR_TRIGGER; } else { - player->soundEffects |= 0x400000; + player->triggers |= VERTICAL_TUMBLE_TRIGGER; } } } |
