From e7bd02824e9475ca8e72ccb1a92481692c37f2ed Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 5 Mar 2025 20:30:49 -0600 Subject: [PATCH] Long town wait: don't autosave eating --- src/game/boe.actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index c9b91dac..7400388c 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -1119,7 +1119,7 @@ static void handle_town_wait(bool& need_redraw, bool& need_reprint) { } for(int i = 0; i < 80 && !party_sees_a_monst(); i++){ - increase_age(); + increase_age(false); do_monsters(); do_monster_turn(); int make_wand = get_ran(1,1,160 - univ.town->difficulty);