• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: コミット

変愚蛮怒のメインリポジトリです


コミットメタ情報

リビジョン386489ce17b4a0f9e119af237d9c260467fa79fe (tree)
日時2018-01-22 23:54:33
作者Deskull <desull@user...>
コミッターDeskull

ログメッセージ

#37908 調査時、悪夢モードのモンスター加速修正+5が表示に反映されていない不具合を修正。 / Fix display error of monster's speed on probing when ironman_nightmare that aren't applied +5.

変更サマリ

差分

--- a/src/spells2.c
+++ b/src/spells2.c
@@ -3219,6 +3219,7 @@ bool probing(void)
32193219 speed = m_ptr->mspeed - 110;
32203220 if (MON_FAST(m_ptr)) speed += 10;
32213221 if (MON_SLOW(m_ptr)) speed -= 10;
3222+ if (ironman_nightmare) speed += 5;
32223223
32233224 /* Get the monster's alignment */
32243225 #ifdef JP
旧リポジトリブラウザで表示