From e8acccd50cf2d7716c0f97e57fa0e259c42484cd Mon Sep 17 00:00:00 2001 From: luboslenco Date: Wed, 30 Jul 2025 12:34:31 +0200 Subject: [PATCH] Fix blend import path --- base/sources/ts/import_blend_mesh.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/base/sources/ts/import_blend_mesh.ts b/base/sources/ts/import_blend_mesh.ts index 9b1e0e56..6a5e6568 100644 --- a/base/sources/ts/import_blend_mesh.ts +++ b/base/sources/ts/import_blend_mesh.ts @@ -31,14 +31,10 @@ function import_blend_mesh_run(path: string, replace_existing: bool = true) { return; } - let save: string; + let save: string = "tmp.obj"; if (path_is_protected()) { - save = iron_internal_save_path(); + save = iron_internal_save_path() + save; } - else { - save = path_data(); - } - save += "tmp.obj"; ///if arm_windows path = string_replace_all(path, "\\", "\\\\");