From a1e4ed05c42fc986f04233b89497ab90a3885862 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 14 Jul 2025 18:14:09 +0200 Subject: [PATCH] Don't force load asset on asset clone if it's unused --- Source/Engine/Content/Content.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Content/Content.cpp b/Source/Engine/Content/Content.cpp index 2178579cc..48e7b6c1f 100644 --- a/Source/Engine/Content/Content.cpp +++ b/Source/Engine/Content/Content.cpp @@ -1003,7 +1003,7 @@ bool Content::CloneAssetFile(const StringView& dstPath, const StringView& srcPat FileSystem::DeleteFile(tmpPath); // Reload storage - if (auto storage = ContentStorageManager::GetStorage(dstPath)) + if (auto storage = ContentStorageManager::GetStorage(dstPath, false)) { storage->Reload(); }