fix bug on multi-move

This commit is contained in:
Shadow15510 2022-01-29 11:50:15 +01:00
parent faf1500ddc
commit f21fefddf9
1 changed files with 2 additions and 1 deletions

View File

@ -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)