From: Ricardo Cruz Date: Wed, 28 Apr 2004 11:43:47 +0000 (+0000) Subject: Fixed bug told in the mailing list: X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=123292bf991efd64b543987073755a5e033cebfa;p=supertux.git Fixed bug told in the mailing list: �- fireballs don't shoot if you are above screen (they're destroyed because they're off screen)� There is not point in removing them when they are above y=0. SVN-Revision: 799 --- diff --git a/src/special.cpp b/src/special.cpp index 71a2e5e8a..b2874769a 100644 --- a/src/special.cpp +++ b/src/special.cpp @@ -107,7 +107,6 @@ Bullet::action(double frame_ratio) if (base.x < scroll_x || base.x > scroll_x + screen->w || - base.y < 0 || base.y > screen->h || issolid(base.x + 4, base.y + 2) || issolid(base.x, base.y + 2) ||