Fix deprecation issue with FlxTweenType.

This commit is contained in:
EliteMasterEric 2024-02-12 16:49:56 -05:00
parent f14193e17b
commit f4d4d6a194
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class CopyItemsCommand implements ChartEditorCommand
state.txtCopyNotif.y = FlxG.mouse.y - 16;
FlxTween.tween(state.txtCopyNotif, {y: state.txtCopyNotif.y - 32}, 0.5,
{
type: FlxTween.ONESHOT,
type: FlxTweenType.ONESHOT,
ease: FlxEase.quadOut,
onComplete: function(_) {
state.txtCopyNotif.visible = false;