From 8fa9f5b3db709a6601dd31bbcb3d945ef574ea41 Mon Sep 17 00:00:00 2001 From: Chris Weed Date: Tue, 16 Jul 2024 15:48:42 -0500 Subject: [PATCH] Remove version --- menu.ts | 2 ++ pirateLives.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/menu.ts b/menu.ts index fba8022..6b17a78 100644 --- a/menu.ts +++ b/menu.ts @@ -10,6 +10,8 @@ namespace Menu { music.stopAllSounds() + _versionSprite.destroy() + _callback() } diff --git a/pirateLives.ts b/pirateLives.ts index b0b1173..9e8dd79 100644 --- a/pirateLives.ts +++ b/pirateLives.ts @@ -17,10 +17,12 @@ namespace PirateLives { _liveCountIcon = sprites.create(assets.image`Pirate Lives`) _liveCountIcon.x = 5 _liveCountIcon.y = 115 + _liveCountIcon.z = 120 _liveCountSprite = textsprite.create(currentPirateCount + '', 0, 1) _liveCountSprite.x = 8 + 5 + (_liveCountSprite.width / 2) _liveCountSprite.y = 115 + _liveCountSprite.z = 120 } export function hide() {