Index: Games/Pingus/src/actions/bomber.cxx =================================================================== RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/bomber.cxx,v retrieving revision 1.15 diff -u -r1.15 bomber.cxx --- Games/Pingus/src/actions/bomber.cxx 1 Oct 2002 19:53:45 -0000 1.15 +++ Games/Pingus/src/actions/bomber.cxx 6 Oct 2002 13:11:32 -0000 @@ -84,6 +84,12 @@ { sprite.update (); + // Make a Bomber act like a Floater + pingu->set_velocity(Vector(0.0, 0.0)); + + if (rel_getpixel(0, -1) == Groundtype::GP_NOTHING) + pingu->set_y(pingu->get_y() + 1); + if (sprite.get_frame () > 9 && !sound_played) { WorldObj::get_world()->play_wav("sounds/plop.wav", pingu->get_pos ()); sound_played = true;