[Super-tux-commit] supertux/src player.cpp,1.106,1.107
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-05-18 17:56:39
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29818 Modified Files: player.cpp Log Message: reverted totally pointless commit of rmcruz. size does NOT contain the current power of tux. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.106 retrieving revision 1.107 diff -u -d -r1.106 -r1.107 --- player.cpp 18 May 2004 17:46:05 -0000 1.106 +++ player.cpp 18 May 2004 17:56:28 -0000 1.107 @@ -417,7 +417,7 @@ physic.set_velocity_y(0); } - if (input.down == DOWN && !on_ground() && !duck && size != SMALL) + if (input.down == DOWN && !on_ground() && !duck && size == BIG) butt_jump = true; else if (input.down == UP) butt_jump = false; |