From 2dd587cb46d8575988c2714942acb70a6cc14e03 Mon Sep 17 00:00:00 2001 From: bay4lly Date: Wed, 8 Jul 2026 18:28:11 +0300 Subject: [PATCH 1/2] Fixed Molang Expression Export --- plugins.json | 2 +- plugins/bbs_exporter/bbs_exporter.js | 1 + plugins/bbs_exporter/changelog.json | 13 +++++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/plugins.json b/plugins.json index 77dc7f36..ff73af02 100644 --- a/plugins.json +++ b/plugins.json @@ -960,7 +960,7 @@ "icon": "icon.png", "author": "McHorse", "description": "Adds actions to export/import models in BBS format, which is used by BBS mod.", - "version": "1.3.2", + "version": "1.3.3", "variant": "both", "tags": ["Exporter", "Importer"], "min_version": "4.8.0", diff --git a/plugins/bbs_exporter/bbs_exporter.js b/plugins/bbs_exporter/bbs_exporter.js index 44bcb6d3..09e2bbc6 100644 --- a/plugins/bbs_exporter/bbs_exporter.js +++ b/plugins/bbs_exporter/bbs_exporter.js @@ -317,6 +317,7 @@ { return 0; } + return processValue(value, group, component); } return processValue(parsed, group, component); diff --git a/plugins/bbs_exporter/changelog.json b/plugins/bbs_exporter/changelog.json index 26bfae7c..f3443617 100644 --- a/plugins/bbs_exporter/changelog.json +++ b/plugins/bbs_exporter/changelog.json @@ -89,5 +89,18 @@ ] } ] + }, + "1.3.3": { + "title": "1.3.3", + "date": "2026-07-08", + "author": "bay4lly", + "categories": [ + { + "title": "Bug fixes", + "list": [ + "Fixed an issue where Molang expression were ignored during export in certain situations." + ] + } + ] } } \ No newline at end of file From 435ed446800b3e41efff72a8b952e8bd119540e1 Mon Sep 17 00:00:00 2001 From: bay4lly Date: Wed, 8 Jul 2026 18:33:32 +0300 Subject: [PATCH 2/2] Update bbs_exporter.js --- plugins/bbs_exporter/bbs_exporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bbs_exporter/bbs_exporter.js b/plugins/bbs_exporter/bbs_exporter.js index 09e2bbc6..e2d219ef 100644 --- a/plugins/bbs_exporter/bbs_exporter.js +++ b/plugins/bbs_exporter/bbs_exporter.js @@ -786,7 +786,7 @@ author: "McHorse", description: "Adds actions to export/import models in BBS format, which is used by BBS mod.", icon: "icon.png", - version: "1.3.2", + version: "1.3.3", min_version: "4.8.0", variant: "both", tags: ["Exporter", "Importer"],