From f7c09159e892f49bcf73962d2efc201c369541e2 Mon Sep 17 00:00:00 2001 From: George Kurelic Date: Wed, 18 Oct 2023 08:21:26 -0700 Subject: [PATCH] potentially prevent ci errors (#2943) --- flixel/animation/FlxAnimationController.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flixel/animation/FlxAnimationController.hx b/flixel/animation/FlxAnimationController.hx index 1c113a35b4..26f43dad64 100644 --- a/flixel/animation/FlxAnimationController.hx +++ b/flixel/animation/FlxAnimationController.hx @@ -84,7 +84,7 @@ class FlxAnimationController implements IFlxDestroyable /** * Internal, stores all the animation that were added to this sprite. */ - var _animations(default, null) = new Map(); + var _animations(default, null):Map = []; var _prerotated:FlxPrerotatedAnimation;