diff options
author | Treeki <treeki@gmail.com> | 2012-10-14 23:37:40 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-10-14 23:37:40 +0200 |
commit | c5fad10dd813643c0b91854ddcc51b9e4d144022 (patch) | |
tree | a35f0b56d0e44e7b5b627f2b849d5f477e64d2a1 | |
parent | 12e7595595397e2e9008d611b108fb686bf008a3 (diff) | |
download | kamek-c5fad10dd813643c0b91854ddcc51b9e4d144022.tar.gz kamek-c5fad10dd813643c0b91854ddcc51b9e4d144022.zip |
sun kill sounds
Diffstat (limited to '')
-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); } |