draw mouse last

This commit is contained in:
Waylon Walker 2023-01-12 17:48:58 -06:00
parent 96f1f6b3c2
commit a2ffbd4123
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -705,8 +705,6 @@ class Creeper(Game):
self.mouse_box = MouseSprite(self, self.background, hotbar=self.hotbar)
self.mouse_box.draw()
self.make_sound()
if self.inventory_menu.is_open:
@ -715,6 +713,7 @@ class Creeper(Game):
self.main_keys()
else:
self.normal_keys()
self.mouse_box.draw()
def main(debug=False):