diff options
-rwxr-xr-x | src/mrsun.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mrsun.cpp b/src/mrsun.cpp index 5b9130c..b643128 100755 --- a/src/mrsun.cpp +++ b/src/mrsun.cpp @@ -102,12 +102,15 @@ bool daMrSun_c::collisionCat2_IceBall_15_YoshiIce(ActivePhysics *apThis, ActiveP } void daMrSun_c::collisionCat9_RollingObject(ActivePhysics *apThis, ActivePhysics *apOther) { this->timer = 0; + PlaySound(this, SE_EMY_DOWN); doStateChange(&StateID_DieFall); } void daMrSun_c::collisionCat13_Hammer(ActivePhysics *apThis, ActivePhysics *apOther) { this->timer = 0; + PlaySound(this, SE_EMY_DOWN); doStateChange(&StateID_DieFall); } void daMrSun_c::collisionCat3_StarPower(ActivePhysics *apThis, ActivePhysics *apOther) { this->timer = 0; + PlaySound(this, SE_EMY_DOWN); doStateChange(&StateID_DieFall); } void daMrSun_c::collisionCatD_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther) { DamagePlayer(this, apThis, apOther); } void daMrSun_c::collisionCat7_WMWaggleWater(ActivePhysics *apThis, ActivePhysics *apOther) { DamagePlayer(this, apThis, apOther); } |