From eff30ee13a7d720811a7a0897fd4d4658eab0263 Mon Sep 17 00:00:00 2001 From: _nothere <_nothere@0568b783-4c39-0410-ac80-bf13821ea2a2> Date: Mon, 13 May 2002 14:40:50 +0000 Subject: [PATCH] =?utf8?q?=E8=AA=BF=E6=9F=BB=E3=82=A2=E3=82=A4=E3=83=86?= =?utf8?q?=E3=83=A0=E3=82=92=E4=BD=BF=E3=81=A3=E3=81=9F=E6=99=82=E3=81=AE?= =?utf8?q?=E3=83=A2=E3=83=B3=E3=82=B9=E3=82=BF=E3=83=BC=E5=B1=9E=E6=80=A7?= =?utf8?q?=E8=A1=A8=E7=A4=BA=E3=81=AE=E8=8B=B1=E8=AA=9E=E8=A1=A8=E8=A8=98?= =?utf8?q?=E3=82=92=E7=9F=AD=E3=81=8F=E3=81=97=E3=81=9F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/spells2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spells2.c b/src/spells2.c index 801d62dca..f382f8e7c 100644 --- a/src/spells2.c +++ b/src/spells2.c @@ -4996,7 +4996,7 @@ bool probing(void) else if (m_ptr->sub_align & SUB_ALIGN_GOOD) align = "ÃæΩ(Á±ÎÉ)"; else align = "ÃæΩ"; #else - if ((r_ptr->flags3 & RF3_EVIL) && (r_ptr->flags3 & RF3_GOOD)) align = "good and evil"; + if ((r_ptr->flags3 & RF3_EVIL) && (r_ptr->flags3 & RF3_GOOD)) align = "good&evil"; else if (r_ptr->flags3 & RF3_EVIL) align = "evil"; else if (r_ptr->flags3 & RF3_GOOD) align = "good"; else if ((m_ptr->sub_align & SUB_ALIGN_EVIL) && (m_ptr->sub_align & SUB_ALIGN_GOOD)) align = "neutral(good and evil)"; @@ -5009,7 +5009,7 @@ bool probing(void) #ifdef JP sprintf(buf,"%s ... °À­:%s HP:%d/%d AC:%d ®ÅÙ:%s%d ·Ð¸³:", m_name, align, m_ptr->hp, m_ptr->maxhp, r_ptr->ac, (speed > 0) ? "+" : "", speed); #else -sprintf(buf, "%s ... alignment:%s HP:%d/%d AC:%d speed:%s%d exp:", m_name, align, m_ptr->hp, m_ptr->maxhp, r_ptr->ac, (speed > 0) ? "+" : "", speed); +sprintf(buf, "%s ... align:%s HP:%d/%d AC:%d speed:%s%d exp:", m_name, align, m_ptr->hp, m_ptr->maxhp, r_ptr->ac, (speed > 0) ? "+" : "", speed); #endif if (r_ptr->next_r_idx) { -- 2.11.0