X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Fflyingsnowball.cpp;h=1102e9aad4612dc6b414ec05c4c0e0069853d575;hb=1980142d4600d3834e774d410798b47358aa555a;hp=2ad19e45fb44fee98a6f48cc37aa9aaaae5a4b52;hpb=09c91c0f9f096f2b045912b2bfbbd27ea25d00fa;p=supertux.git diff --git a/src/badguy/flyingsnowball.cpp b/src/badguy/flyingsnowball.cpp index 2ad19e45f..1102e9aad 100644 --- a/src/badguy/flyingsnowball.cpp +++ b/src/badguy/flyingsnowball.cpp @@ -88,14 +88,14 @@ FlyingSnowBall::active_update(float elapsed_time) } else if (get_pos().y < start_position.y - 2*32) { - // Flying too high - decreased propeller speed + // Flying too high - decreased propeller speed physic.set_acceleration_y(-grav*0.8); physic.set_velocity_y(physic.get_velocity_y() * 0.99f); } else { - // Flying at acceptable altitude - normal propeller speed + // Flying at acceptable altitude - normal propeller speed physic.set_acceleration_y(-grav*normal_propeller_speed); }