Getting rid of nasty tabs
[supertux.git] / src / badguy / badguy.cpp
index 0e9347e..fd3ef26 100644 (file)
@@ -211,7 +211,7 @@ BadGuy::collision(GameObject& other, const CollisionHit& hit)
     // hit from above?
     if (badguy->get_bbox().p2.y < (bbox.p1.y + 16)) {
       if(collision_squished(*badguy)) {
-       return ABORT_MOVE;
+        return ABORT_MOVE;
       }
     }
 
@@ -224,7 +224,7 @@ BadGuy::collision(GameObject& other, const CollisionHit& hit)
     // hit from above?
     if (player->get_bbox().p2.y < (bbox.p1.y + 16)) {
       if(collision_squished(*player)) {
-       return ABORT_MOVE;
+        return ABORT_MOVE;
       }
     }