From 64bdb6561be1954d4d35ec623872bdaf0cfc937b Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sat, 18 May 2024 21:09:05 +0100 Subject: [PATCH] Fix console line recall after execution --- game/scripts/utility/console.rpy | 1 + 1 file changed, 1 insertion(+) diff --git a/game/scripts/utility/console.rpy b/game/scripts/utility/console.rpy index 25948d96..2107604c 100644 --- a/game/scripts/utility/console.rpy +++ b/game/scripts/utility/console.rpy @@ -409,6 +409,7 @@ init python in _console: widget = renpy.get_widget("console", "consolevp") widget.yadjustment._value = 9999999 console.run([content]) + console.newer() renpy.display.render.redraw(self, 0) renpy.restart_interaction()