diff --git a/src/ball.c b/src/ball.c index 31231fe48..7f76485ea 100644 --- a/src/ball.c +++ b/src/ball.c @@ -44,7 +44,7 @@ ballfall(void) { boolean gets_hit; - if (uball && carried(uball) && welded(uball)) + if (!uball || (uball && carried(uball) && welded(uball))) return; gets_hit = (((uball->ox != u.ux) || (uball->oy != u.uy))