[Super-tux-commit] supertux/src badguy.cpp,1.57,1.58
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-04-28 21:23:25
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18796/src Modified Files: badguy.cpp Log Message: Tux kicking animation wasn't being used in some circustances - fixed. Index: badguy.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/badguy.cpp,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- badguy.cpp 28 Apr 2004 18:45:24 -0000 1.57 +++ badguy.cpp 28 Apr 2004 21:23:14 -0000 1.58 @@ -845,6 +845,7 @@ } mode = KICK; + player->kick_timer.start(KICKING_TIME); set_sprite(img_mriceblock_flat_left, img_mriceblock_flat_right); } @@ -1036,6 +1037,7 @@ } mode = KICK; + player->kick_timer.start(KICKING_TIME); set_sprite(img_mriceblock_flat_left, img_mriceblock_flat_right); } break; |