From 57bf003c267aec76c6c87fa062ac371fc91b908a Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sun, 5 Jan 2025 13:35:18 +0200 Subject: [PATCH] Fix rolling boulder not unblocking sight at wall of water A rolling boulder that destroys a wall of water did not unblock the vision at that point. --- src/do.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/do.c b/src/do.c index 43376b529..1baddb56e 100644 --- a/src/do.c +++ b/src/do.c @@ -74,6 +74,7 @@ boulder_hits_pool( levl[rx][ry].drawbridgemask &= ~DB_UNDER; /* clear lava */ levl[rx][ry].drawbridgemask |= DB_FLOOR; } else { + unblock_point(rx, ry); levl[rx][ry].typ = ROOM, levl[rx][ry].flags = 0; } /* 3.7: normally DEADMONSTER() is used when traversing the fmon