at the left or right end, it's obvious which dir we will go next
[supertux.git] / src / object / falling_coin.cpp
index b1365b6..8e091a5 100644 (file)
@@ -1,4 +1,4 @@
-//  $Id: infoblock.cpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $
+//  $Id$
 //
 //  SuperTux
 //  Copyright (C) 2006 Ondrej Hosek <ondra.hosek@gmail.com>
@@ -29,7 +29,7 @@ FallingCoin::FallingCoin(const Vector& start_position, const int vel_x)
 {
   pos = start_position;
   sprite = sprite_manager->create("images/objects/coin/coin.sprite");
-  physic.set_velocity_y(800);
+  physic.set_velocity_y(-800);
   physic.set_velocity_x(vel_x);
 }