From b8e0394a2e1fe55c97e3187b15245861f10de88e Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 6 May 2015 18:02:11 +0300 Subject: [PATCH] Hidden holes made by breaking a wand of digging Holes created via applying a wand of digging were not shown on the map, because holes are always marked as seen, and seetrap/feeltrap then do nothing. --- src/dig.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dig.c b/src/dig.c index d356668b2..5cb1c0baa 100644 --- a/src/dig.c +++ b/src/dig.c @@ -569,6 +569,7 @@ int ttyp; if (!ttmp) return; newobjs = level.objects[x][y]; ttmp->madeby_u = madeby_u; + ttmp->tseen = 0; if (cansee(x,y)) seetrap(ttmp); else if (madeby_u) feeltrap(ttmp);