変愚蛮怒のメインリポジトリです
Revision | 32b6a92ff7e702d1fea67df13be53bb018a40539 (tree) |
---|---|
Time | 2021-02-07 21:08:41 |
Author | deskull <deskull@user...> |
Commiter | deskull |
Merge remote-tracking branch 'remotes/origin/feature/Fix-Auto-More' into develop
@@ -277,10 +277,10 @@ bool is_msg_window_flowed(void) | ||
277 | 277 | static void msg_flush(player_type *player_ptr, int x) |
278 | 278 | { |
279 | 279 | byte a = TERM_L_BLUE; |
280 | - bool show_more = is_msg_window_flowed(); | |
280 | + bool show_more = (num_more >= 0); | |
281 | 281 | |
282 | - if (auto_more && (quick_messages || !player_ptr->now_damaged)) | |
283 | - show_more = FALSE; | |
282 | + if (auto_more && !player_ptr->now_damaged) | |
283 | + show_more = is_msg_window_flowed(); | |
284 | 284 | |
285 | 285 | player_ptr->now_damaged = FALSE; |
286 | 286 | if (!player_ptr->playing || show_more) { |