From 60754e10299775605b2beb42920ee82baacde162 Mon Sep 17 00:00:00 2001 From: Habu Date: Mon, 18 Oct 2021 18:29:48 +0900 Subject: [PATCH] =?utf8?q?[Fix]=20=E6=95=B5=E3=81=8C=E3=83=95=E3=82=A1?= =?utf8?q?=E3=82=A4=E3=82=A2=E3=83=BB=E3=83=9C=E3=83=BC=E3=83=AB=E3=82=92?= =?utf8?q?=E5=94=B1=E3=81=88=E3=81=9F=E6=99=82=E3=81=AB=E3=82=AF=E3=83=A9?= =?utf8?q?=E3=83=83=E3=82=B7=E3=83=A5=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix #1808. ファイア・ボールのメッセージの設定で対象がプレイヤー用とモンスター用の ものが入れ替わってしまっているのが原因。 正しいものに修正する。 --- src/mspell/mspell-ball.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mspell/mspell-ball.cpp b/src/mspell/mspell-ball.cpp index 31f171291..6fda7527c 100644 --- a/src/mspell/mspell-ball.cpp +++ b/src/mspell/mspell-ball.cpp @@ -159,8 +159,8 @@ MonsterSpellResult spell_RF5_BA_FIRE(player_type *player_ptr, POSITION y, POSITI msg.to_mons = _("%^sが%^sに向かって手榴弾を投げた。", "%^s throws a hand grenade."); } else { msg.blind = _("%^sが何かをつぶやいた。", "%^s mumbles."); - msg.to_mons = _("%^sがファイア・ボールの呪文を唱えた。", "%^s casts a fire ball."); - msg.to_player = _("%^sが%sに向かってファイア・ボールの呪文を唱えた。", "%^s casts a fire ball at %s."); + msg.to_player = _("%^sがファイア・ボールの呪文を唱えた。", "%^s casts a fire ball."); + msg.to_mons = _("%^sが%sに向かってファイア・ボールの呪文を唱えた。", "%^s casts a fire ball at %s."); } monspell_message(player_ptr, m_idx, t_idx, msg, TARGET_TYPE); -- 2.11.0