diff --git a/source/player/psfall.cpp b/source/player/psfall.cpp index 87521a898..9835038c9 100644 --- a/source/player/psfall.cpp +++ b/source/player/psfall.cpp @@ -66,8 +66,7 @@ CPlayerStateFallFar s_stateFallFar; ---------------------------------------------------------------------- */ void CPlayerStateFall::enter(CPlayerModeBase *_playerMode) { -// _playerMode->setAnimNo(ANIM_SPONGEBOB_HOVER); - _playerMode->setAnimNo(ANIM_SPONGEBOB_FIRE); + _playerMode->setAnimNo(ANIM_SPONGEBOB_JUMP); } diff --git a/source/player/psjump.cpp b/source/player/psjump.cpp index 372717d29..9079c8728 100644 --- a/source/player/psjump.cpp +++ b/source/player/psjump.cpp @@ -70,8 +70,7 @@ CPlayerStateJump s_stateJump; ---------------------------------------------------------------------- */ void CPlayerStateJump::enter(CPlayerModeBase *_playerMode) { -//!! _playerMode->setAnimNo(ANIM_SPONGEBOB_HOVER); - _playerMode->setAnimNo(ANIM_SPONGEBOB_FIRE); + _playerMode->setAnimNo(ANIM_SPONGEBOB_JUMP); m_jumpFrames=0; _playerMode->jump(); diff --git a/source/player/psrun.h b/source/player/psrun.h index 8c03a76ac..945d672ba 100644 --- a/source/player/psrun.h +++ b/source/player/psrun.h @@ -43,9 +43,9 @@ public: void think(class CPlayerModeBase *_playerMode); protected: - virtual int getStartFrame() {return ANIM_SPONGEBOB_FIRE;} + virtual int getStartFrame() {return ANIM_SPONGEBOB_RUNSTART;} virtual int getLoopFrame() {return ANIM_SPONGEBOB_RUN;} - virtual int getEndFrame() {return ANIM_SPONGEBOB_FIRE;} + virtual int getEndFrame() {return ANIM_SPONGEBOB_RUNSTOP;} private: int m_numberOfTimesAnimHasLooped;