Reverts the player controls change from r6272 (bug 577).
Thanks to Matt McCutchen for this patch.
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6312
837edb03-e0f3-0310-88ca-
d4d4e8b29345
if(controller->hold(Controller::JUMP) && jump_button_timer.started() && can_jump) {
jump_button_timer.stop();
if (duck) {
- // jump a little bit if moving in same direction; otherwise, do a backflip
- if ((physic.get_velocity_x() < 0 && dir == LEFT) || (physic.get_velocity_x() > 0 && dir == RIGHT)) {
+ // when running, only jump a little bit; else do a backflip
+ if ((physic.get_velocity_x() != 0) ||
+ (controller->hold(Controller::LEFT)) ||
+ (controller->hold(Controller::RIGHT)))
+ {
do_jump(-300);
- } else {
+ }
+ else
+ {
do_backflip();
}
} else {