From fabac77e7bf8abe0b7c66d96e190e842e78c3ad5 Mon Sep 17 00:00:00 2001 From: Habu Date: Tue, 15 Jun 2021 22:25:11 +0900 Subject: [PATCH] =?utf8?q?[Fix]=20=E5=91=AA=E3=81=84=E3=81=AE=E4=B8=80?= =?utf8?q?=E6=99=82=E5=8A=B9=E6=9E=9C=E3=81=AE=E7=8B=82=E6=88=A6=E5=A3=AB?= =?utf8?q?=E5=8C=96=E3=81=AE=E8=AA=AC=E6=98=8E=E6=96=87=E3=81=8C*=E9=91=91?= =?utf8?q?=E5=AE=9A*=E6=99=82=E3=81=AB=E5=87=BA=E3=81=AA=E3=81=84=20#1059?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit object_type の curse_flags の TRC::BERS_RAGE のチェック漏れによるもの。 他の呪いフラグと同じようにチェックするようにする。 --- src/perception/identification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perception/identification.cpp b/src/perception/identification.cpp index 8c602e960..2aec88146 100644 --- a/src/perception/identification.cpp +++ b/src/perception/identification.cpp @@ -654,7 +654,7 @@ bool screen_object(player_type *player_ptr, object_type *o_ptr, BIT_FLAGS mode) info[i++] = _("それは恐怖感を引き起こす。", "It makes you subject to cowardice."); } - if (has_flag(flgs, TR_BERS_RAGE)) + if (has_flag(flgs, TR_BERS_RAGE) || o_ptr->curse_flags.has(TRC::BERS_RAGE)) info[i++] = _("それは狂戦士化の発作を引き起こす。", "It makes you subject to berserker fits."); if ((has_flag(flgs, TR_TELEPORT)) || o_ptr->curse_flags.has(TRC::TELEPORT)) { -- 2.11.0