From bbc0710e909bf48be5fed53eae8b3c23f4da33fe Mon Sep 17 00:00:00 2001 From: JVN-Pixels <146671762+JVNpixels@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:22:52 -0700 Subject: [PATCH] Fix the file extension for saving stage files --- source/funkin/ui/debug/stageeditor/StageEditorState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/ui/debug/stageeditor/StageEditorState.hx b/source/funkin/ui/debug/stageeditor/StageEditorState.hx index 8488d45a7ac..cd4d4b90d6e 100644 --- a/source/funkin/ui/debug/stageeditor/StageEditorState.hx +++ b/source/funkin/ui/debug/stageeditor/StageEditorState.hx @@ -1300,7 +1300,7 @@ class StageEditorState extends UIState { saved = true; currentFile = path; - }, null, stageName + '.' + FileUtil.FILE_FILTER_FNFS.extension); + }, null, stageName + '.' + Constants.EXT_STAGE); case 'save stage': if (currentFile == '')