From 1ff1404234c7ad6483ec0d0e9e639183fe2dba30 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 5 Jan 2022 15:08:55 -0700 Subject: [PATCH] fix sprites not appearing --- src/hollywoo_flixel/FlxDirector.kiss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hollywoo_flixel/FlxDirector.kiss b/src/hollywoo_flixel/FlxDirector.kiss index f8d368f..317db53 100644 --- a/src/hollywoo_flixel/FlxDirector.kiss +++ b/src/hollywoo_flixel/FlxDirector.kiss @@ -63,11 +63,11 @@ (otherwise)) (when reAddFront (when currentState.actorOnLeft (currentState.remove currentState.actorOnLeft)) - (when currentState.actorOnRight (currentState.remove currentState.actorOnRight)) + (when currentState.actorOnRight (currentState.remove currentState.actorOnRight))) (currentState.add character.actor) (when reAddFront (when currentState.actorOnLeft (currentState.add currentState.actorOnLeft)) - (when currentState.actorOnRight (currentState.add currentState.actorOnRight))))) + (when currentState.actorOnRight (currentState.add currentState.actorOnRight)))) (cc)) (method :Void hideCharacter [:Character character :Continuation cc]