Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10486
Modified Files:
badguy.cpp
Log Message:
- changed bouncing snowball speed back to normal
Index: badguy.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/badguy.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- badguy.cpp 22 Apr 2004 19:15:21 -0000 1.47
+++ badguy.cpp 22 Apr 2004 19:53:17 -0000 1.48
@@ -187,7 +187,7 @@
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);
|