diff options
Diffstat (limited to 'src/entities/soldato.c')
-rw-r--r-- | src/entities/soldato.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities/soldato.c b/src/entities/soldato.c index 7318d5b..28e9b67 100644 --- a/src/entities/soldato.c +++ b/src/entities/soldato.c @@ -123,8 +123,8 @@ void updateSoldatoGuns(Game * game, Entity * entity) { Bullet bullet = createBulletFromDirection(*entity, data->gunTarget, SOLDATO_BULLET_DAMAGE); BulletHitInfo hit = shootBulletAtEntity(player, bullet); - if (hit.hit) - printf("This fucker hit %lf\n", t); + // if (hit.hit) + // printf("This fucker hit %lf\n", t); data->timeSinceLastShot = t; } |