From: Ingo Ruhnke Date: Thu, 22 Apr 2004 19:53:17 +0000 (+0000) Subject: - changed bouncing snowball speed back to normal X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=5e7d513679fb218c066d0ccb154e524189f49f5a;p=supertux.git - changed bouncing snowball speed back to normal SVN-Revision: 650 --- diff --git a/src/badguy.cpp b/src/badguy.cpp index 5331046fa..ac037079e 100644 --- a/src/badguy.cpp +++ b/src/badguy.cpp @@ -187,7 +187,7 @@ BadGuy::BadGuy(float x, float y, BadGuyKind kind_, bool stay_on_platform_) physic.enable_gravity(false); set_sprite(img_flame, img_flame); } else if(kind == BAD_BOUNCINGSNOWBALL) { - physic.set_velocity(-BADGUY_WALK_SPEED, 0); + physic.set_velocity(-1.3, 0); set_sprite(img_bouncingsnowball_left, img_bouncingsnowball_right); } else if(kind == BAD_STALACTITE) { physic.enable_gravity(false);