Reduce tank turret height so that the laser doesn't hit it through the tracks.

This commit is contained in:
Steve 2018-04-15 09:24:50 +01:00
parent 630c01ac8b
commit 1de2c09e00
1 changed files with 1 additions and 1 deletions

View File

@ -366,5 +366,5 @@ static void getCollisionBounds(SDL_Rect *r)
r->x = self->facing == FACING_LEFT ? self->x + 98 : self->x;
r->y = self->y;
r->w = 140;
r->h = self->h;
r->h = 66;
}