OSDN Git Service

[Fix] クイックメッセージの挙動が以前と異なる
authordis- <dis.rogue@gmail.com>
Sun, 7 Feb 2021 11:50:49 +0000 (20:50 +0900)
committerdis- <dis.rogue@gmail.com>
Sun, 7 Feb 2021 11:50:49 +0000 (20:50 +0900)
Auto-MoreがONで被弾したときのメッセージ送りの挙動が以前と異なっている。
以前の挙動と同じ状態に戻す。

src/view/display-messages.c

index aa2f99c..a6c2647 100644 (file)
@@ -279,7 +279,7 @@ static void msg_flush(player_type *player_ptr, int x)
     byte a = TERM_L_BLUE;
     bool show_more = (num_more >= 0);
 
-    if (auto_more && (quick_messages || !player_ptr->now_damaged))
+    if (auto_more && !player_ptr->now_damaged)
         show_more = is_msg_window_flowed();
 
     player_ptr->now_damaged = FALSE;