From c94c79170bc922847433222bfb80682a13f8e966 Mon Sep 17 00:00:00 2001 From: mogami Date: Fri, 22 Mar 2002 12:37:26 +0000 Subject: [PATCH] =?utf8?q?=E9=BA=BB=E7=97=BA=E3=82=84=E5=BD=AB=E5=83=8F?= =?utf8?q?=E7=8A=B6=E6=85=8B=E3=81=A7=E6=AD=BB=E3=82=93=E3=81=A0=E3=81=A8?= =?utf8?q?=E3=81=8D=E3=80=81=E6=AD=BB=E5=9B=A0=E3=81=AB"=E9=BA=BB=E7=97=BA?= =?utf8?q?=E7=8A=B6=E6=85=8B=E3=81=A7"=E3=80=81"=E5=BD=AB=E5=83=8F?= =?utf8?q?=E7=8A=B6=E6=85=8B=E3=81=A7"=E3=82=92=E8=BF=BD=E5=8A=A0=E3=81=99?= =?utf8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=20=E3=81=97=E3=81=A6?= =?utf8?q?=E3=81=BF=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/effects.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/effects.c b/src/effects.c index c052e1159..dc350fcd5 100644 --- a/src/effects.c +++ b/src/effects.c @@ -4989,7 +4989,11 @@ bool take_hit(int damage_type, int damage, cptr hit_from, int monspell) #endif /* Note cause of death */ - (void)strcpy(died_from, hit_from); +#ifdef JP + sprintf(died_from, "%s%s", !p_ptr->paralyzed ? "" : p_ptr->free_act ? "ĦÁü¾õÂÖ¤Ç":"Ëãáã¾õÂÖ¤Ç", hit_from); +#else + sprintf(died_from, "%s%s", hit_from, !p_ptr->paralyzed ? "" : " while helpless"); +#endif /* No longer a winner */ total_winner = FALSE; -- 2.11.0