From cb6cca011e3d6ae368dbf35656d05c983abb7e7c Mon Sep 17 00:00:00 2001 From: mogami Date: Sat, 7 Sep 2002 17:05:51 +0000 Subject: [PATCH] =?utf8?q?=E5=9C=B0=E9=9C=87=E3=81=8C=E8=B5=B7=E3=81=8D?= =?utf8?q?=E3=81=9F=E3=81=A8=E3=81=8D=E3=81=AB=E6=9C=AA=E6=84=9F=E7=9F=A5?= =?utf8?q?=E3=81=AE=E3=83=88=E3=83=A9=E3=83=83=E3=83=97=E3=81=8C=E5=8B=9D?= =?utf8?q?=E6=89=8B=E3=81=AB=E6=84=9F=E7=9F=A5=E6=B8=88=E3=81=BF=E3=81=AB?= =?utf8?q?=E3=81=AA=E3=81=A3=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=81=A7?= =?utf8?q?=E4=BF=AE=E6=AD=A3=E3=81=97=E3=81=A6=20=E4=BD=95=E3=82=82?= =?utf8?q?=E5=BD=B1=E9=9F=BF=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86?= =?utf8?q?=E3=81=AB=E3=81=97=E3=81=9F=E3=80=821.3.0=E3=81=BE=E3=81=A7?= =?utf8?q?=E3=81=AF=E6=9C=AA=E6=84=9F=E7=9F=A5=E3=81=AE=E3=83=88=E3=83=A9?= =?utf8?q?=E3=83=83=E3=83=97=E3=81=AF=E5=95=8F=E7=AD=94=E7=84=A1=E7=94=A8?= =?utf8?q?=E3=81=A7=E6=B6=88=E6=BB=85=E3=81=97=E3=81=A6=20=E3=81=84?= =?utf8?q?=E3=81=9F=E3=81=8C=E3=80=81=E6=84=9F=E7=9F=A5=E6=B8=88=E3=81=BF?= =?utf8?q?=E3=83=88=E3=83=A9=E3=83=83=E3=83=97=E3=81=AF=E5=A3=81=E3=81=AB?= =?utf8?q?=E6=BD=B0=E3=81=95=E3=82=8C=E3=81=AA=E3=81=84=E9=99=90=E3=82=8A?= =?utf8?q?=E6=B6=88=E3=81=88=E3=81=AA=E3=81=84=E3=81=AE=E3=81=A7=E3=80=81?= =?utf8?q?=E5=BE=8C=E8=80=85=E3=81=AB=E5=90=88=E3=81=9B=E3=81=A6=E4=BF=AE?= =?utf8?q?=E6=AD=A3=E3=81=97=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/spells2.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/spells2.c b/src/spells2.c index 60593e198..f9a1254de 100644 --- a/src/spells2.c +++ b/src/spells2.c @@ -5536,10 +5536,7 @@ bool earthquake(int cy, int cx, int r) c_ptr = &cave[yy][xx]; /* Lose room and vault */ - c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY | CAVE_UNSAFE | CAVE_OBJECT ); - - /* Clear mimic type */ - c_ptr->mimic = 0; + c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY | CAVE_UNSAFE); /* Lose light and knowledge */ c_ptr->info &= ~(CAVE_GLOW | CAVE_MARK); @@ -5903,6 +5900,12 @@ msg_format("%^s /* Delete objects */ delete_object(yy, xx); + /* Clear mimic type */ + c_ptr->mimic = 0; + + /* Clear mirror, runes flag */ + c_ptr->info &= ~CAVE_OBJECT; + /* Wall (or floor) type */ t = (floor ? randint0(100) : 200); -- 2.11.0