diff options
author | Colin Noga <Tempus@chronometry.ca> | 2013-06-05 12:31:41 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2013-06-05 12:31:41 -0500 |
commit | d8d037539f1e648e34137e6bb96cff47c7861c8d (patch) | |
tree | 897c563e37efbecc32ca67ff6591eaa1fc38c905 | |
parent | e33d76475bc5326d608e74421c8e3a40ae0f4e2e (diff) | |
download | kamek-d8d037539f1e648e34137e6bb96cff47c7861c8d.tar.gz kamek-d8d037539f1e648e34137e6bb96cff47c7861c8d.zip |
chestnut slide collision fix
Diffstat (limited to '')
-rw-r--r-- | src/chestnut.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/chestnut.cpp b/src/chestnut.cpp index ff653c0..e4668a6 100644 --- a/src/chestnut.cpp +++ b/src/chestnut.cpp @@ -36,6 +36,7 @@ class daEnChestnut_c : public dEn_c { void spawnObject(); bool collisionCat1_Fireball_E_Explosion(ActivePhysics *apThis, ActivePhysics *apOther); + bool collisionCat5_Mario(ActivePhysics *apThis, ActivePhysics *apOther); bool CreateIceActors(); @@ -313,6 +314,10 @@ bool daEnChestnut_c::collisionCat1_Fireball_E_Explosion(ActivePhysics *apThis, A return true; } +bool daEnChestnut_c::collisionCat5_Mario(ActivePhysics *apThis, ActivePhysics *apOther) { + this->_vf220(apOther->owner); + return true; +} void daEnChestnut_c::spawnObject() { |