From 422d143e7f8a6e4633bef014bd1effb0099721cb Mon Sep 17 00:00:00 2001 From: MihailRis Date: Wed, 10 Sep 2025 00:58:32 +0300 Subject: [PATCH] fix: generated item does not inherit block tags --- src/content/ContentLoader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/ContentLoader.cpp b/src/content/ContentLoader.cpp index e260ebd7..1527d98b 100644 --- a/src/content/ContentLoader.cpp +++ b/src/content/ContentLoader.cpp @@ -288,6 +288,7 @@ void ContentLoader::loadContent(const dv::value& root) { item.iconType = ItemIconType::BLOCK; item.icon = def.name; item.placingBlock = def.name; + item.tags = def.tags; for (uint j = 0; j < 4; j++) { item.emission[j] = def.emission[j];