diff options
author | Treeki <treeki@gmail.com> | 2012-12-04 01:40:59 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-12-04 01:40:59 +0100 |
commit | e8ffbf5bdc704c4efb426f4d1c10b21527debdc3 (patch) | |
tree | cd84e5e0c99d69984148be63181e35f954390f23 /src/penguin.cpp | |
parent | 49fe08ecf61e59fe13bef6a50fffd119e8909e64 (diff) | |
download | kamek-e8ffbf5bdc704c4efb426f4d1c10b21527debdc3.tar.gz kamek-e8ffbf5bdc704c4efb426f4d1c10b21527debdc3.zip |
changed WMwagglewater to groundpound
Diffstat (limited to '')
-rw-r--r-- | src/penguin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/penguin.cpp b/src/penguin.cpp index f7c63d4..51bbf94 100644 --- a/src/penguin.cpp +++ b/src/penguin.cpp @@ -38,8 +38,8 @@ class daPengi : public dEn_c { void collisionCat3_StarPower(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat14_YoshiFire(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCatD_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther); - void collisionCat7_WMWaggleWater(ActivePhysics *apThis, ActivePhysics *apOther); - void collisionCat7_WMWaggleWaterYoshi(ActivePhysics *apThis, ActivePhysics *apOther); + void collisionCat7_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther); + void collisionCat7_GroundPoundYoshi(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat9_RollingObject(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat1_Fireball_E_Explosion(ActivePhysics *apThis, ActivePhysics *apOther); // bool collisionCat2_IceBall_15_YoshiIce(ActivePhysics *apThis, ActivePhysics *apOther); @@ -113,11 +113,11 @@ daPengi *daPengi::build() { doStateChange(&StateID_Die); } - void daPengi::collisionCat7_WMWaggleWater(ActivePhysics *apThis, ActivePhysics *apOther) { + void daPengi::collisionCat7_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther) { doStateChange(&StateID_Die); } - void daPengi::collisionCat7_WMWaggleWaterYoshi(ActivePhysics *apThis, ActivePhysics *apOther) { + void daPengi::collisionCat7_GroundPoundYoshi(ActivePhysics *apThis, ActivePhysics *apOther) { doStateChange(&StateID_Die); } |