fixed bullet problems
authorMatthias Braun <matze@braunis.de>
Thu, 20 May 2004 23:34:53 +0000 (23:34 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 20 May 2004 23:34:53 +0000 (23:34 +0000)
SVN-Revision: 1289

src/world.cpp

index 46ff60a..eb15b79 100644 (file)
@@ -395,7 +395,7 @@ World::collision_handler()
             {
               // We have detected a collision and now call the
               // collision functions of the collided objects.
-              (*j)->collision(&bullets[i], CO_BULLET, COLLISION_NORMAL);
+              (*j)->collision(bullets[i], CO_BULLET, COLLISION_NORMAL);
               bullets[i]->collision(CO_BADGUY);
               break; // bullet is invalid now, so break
             }