From: Ricardo Cruz Date: Fri, 4 Jun 2004 14:14:59 +0000 (+0000) Subject: Fixed bullet position. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=f07a22ebe858958ba3f68bf55195474c9afe1e05;p=supertux.git Fixed bullet position. SVN-Revision: 1414 --- diff --git a/src/special.cpp b/src/special.cpp index 1ff38f040..bcbd2a841 100644 --- a/src/special.cpp +++ b/src/special.cpp @@ -63,7 +63,7 @@ Bullet::Bullet(const Vector& pos, float xm, int dir, int kind_) physic.set_velocity_x(-BULLET_XM + xm); } - base.y = pos.y + base.height/2; + base.y = pos.y; physic.set_velocity_y(-BULLET_STARTING_YM); old_base = base; kind = kind_;