diff --git a/Minecraft Note Block Studio.yyp b/Minecraft Note Block Studio.yyp
index 0017d4b2c..e3ee8aca7 100644
--- a/Minecraft Note Block Studio.yyp	
+++ b/Minecraft Note Block Studio.yyp	
@@ -647,7 +647,7 @@
     {"CopyToMask":0,"filePath":"datafiles/Data/Python/.vscode","resourceVersion":"1.0","name":"settings.json","resourceType":"GMIncludedFile",},
   ],
   "MetaData": {
-    "IDEVersion": "2022.2.1.618",
+    "IDEVersion": "2022.2.0.614",
   },
   "resourceVersion": "1.5",
   "name": "Minecraft Note Block Studio",
diff --git a/scripts/macros/macros.gml b/scripts/macros/macros.gml
index 6d5bc7c22..68168ada4 100644
--- a/scripts/macros/macros.gml
+++ b/scripts/macros/macros.gml
@@ -1,6 +1,6 @@
 function macros() {
 #macro gm_runtime_version "2022.2.0.487"
-#macro version_date "2022.03.25"
+#macro version_date "2022.03.29"
 #macro version "3.9.4"
 #macro is_prerelease 1 // remember to change to 0 in the release!
 #macro nbs_version 5
diff --git a/scripts/mp3_export/mp3_export.gml b/scripts/mp3_export/mp3_export.gml
index f5841fd89..4fc6f29c1 100644
--- a/scripts/mp3_export/mp3_export.gml
+++ b/scripts/mp3_export/mp3_export.gml
@@ -18,7 +18,8 @@ function mp3_export() {
 	try {
 		var result = python_call_function("audio_export", "main", args, kwargs);
 	} catch (e) {
-		show_message("An error occurred while exporting the song:\n\n" + e)
+		if (language != 1) show_message("An error occurred while exporting the song:\n\n" + e)
+		else show_message("导出歌曲时发生错误:\n\n" + e)
 		return -1;
 	}