From f21fefddf9e805af2be81373bad561f7fd7fd8b0 Mon Sep 17 00:00:00 2001 From: Shadow15510 Date: Sat, 29 Jan 2022 11:50:15 +0100 Subject: [PATCH] fix bug on multi-move --- asci.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/asci.py b/asci.py index 38bafe0..82e8d03 100644 --- a/asci.py +++ b/asci.py @@ -201,7 +201,8 @@ class Asci: if type(key) == str and key[0] == multi_move: for i in list(key[1:]): self._keyboard(convert(i), False) - self.data[4] = convert(key[-1]) + self.screen.set_screen(self.data[2], self.data[3]) + self.data[4] = convert(key[-1]) else: self._keyboard(key)