From: Matthias Braun Date: Tue, 18 May 2004 17:56:28 +0000 (+0000) Subject: reverted totally pointless commit of rmcruz. size does NOT contain the current power... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=8ffef1d74038002d62996006c7ad825a4715f89c;p=supertux.git reverted totally pointless commit of rmcruz. size does NOT contain the current power of tux. SVN-Revision: 1257 --- diff --git a/src/player.cpp b/src/player.cpp index dd02bc296..12b6c9d71 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -417,7 +417,7 @@ Player::handle_vertical_input() 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;