From e766605b61adedca83ae0cc62a30b08039abdaeb Mon Sep 17 00:00:00 2001 From: stpohle Date: Sun, 27 Apr 2003 00:13:44 +0000 Subject: [PATCH] Bombdropping Illness --- src/player.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/player.c b/src/player.c index 246ae68..f4e1641 100644 --- a/src/player.c +++ b/src/player.c @@ -554,11 +554,9 @@ player_ilness_loop () break; } } - else if (type == PI_bomb) { + else if (type == PI_bomb) /* player is dropping bombs */ - if (p->old.x != p->pos.x || p->old.y != p->pos.y) - player_drop_bomb (); - } + player_drop_bomb (); } } }