From 1e56b207ec7950b37a8296f591913ab9f6766fec Mon Sep 17 00:00:00 2001 From: Deskull Date: Thu, 13 Dec 2018 22:18:00 +0900 Subject: [PATCH] =?utf8?q?[Feature]=20#38796=20=E6=B0=B4=E6=B5=81=E8=80=90?= =?utf8?q?=E6=80=A7=E6=99=82=E6=BA=BA=E3=82=8C=E3=81=AA=E3=81=84=E4=BB=95?= =?utf8?q?=E6=A7=98=E3=82=92=E8=BF=BD=E5=8A=A0=E3=80=82=20/=20Add=20featur?= =?utf8?q?e=20of=20no=20drawn=20when=20player=20has=20water=20resist.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/dungeon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dungeon.c b/src/dungeon.c index 1790122ae..ea17378ba 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -1505,7 +1505,7 @@ static void process_world_aux_hp_and_sp(void) } if (have_flag(f_ptr->flags, FF_WATER) && have_flag(f_ptr->flags, FF_DEEP) && - !p_ptr->levitation && !p_ptr->can_swim) + !p_ptr->levitation && !p_ptr->can_swim && !p_ptr->res_water) { if (p_ptr->total_weight > weight_limit()) { -- 2.11.0