From 108d975694c426aaecc947065580e900fd49a32a Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Tue, 7 Jan 2025 10:51:57 +0200 Subject: [PATCH] Fix vision in guard created corridor ... when hero angers the guard, the guard's previous location didn't get the vision blocking fixed. --- src/vault.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vault.c b/src/vault.c index 65fcf7a18..e395465a9 100644 --- a/src/vault.c +++ b/src/vault.c @@ -959,6 +959,7 @@ gd_move(struct monst *grd) mnexto(grd, RLOC_NOMSG); levl[m][n].typ = egrd->fakecorr[0].ftyp; levl[m][n].flags = egrd->fakecorr[0].flags; + recalc_block_point(m, n); del_engr_at(m, n); newsym(m, n); return -1;