From 8d729216b52c476302b5bde40c8e5f5f005b986b Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Thu, 25 Aug 2022 12:15:12 +0200 Subject: [PATCH] Properties now have their variable name as a default tag --- .../api/engine/computation/utility/getEffectivePropTags.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/imports/api/engine/computation/utility/getEffectivePropTags.js b/app/imports/api/engine/computation/utility/getEffectivePropTags.js index e3e52bf2..c8ebe65b 100644 --- a/app/imports/api/engine/computation/utility/getEffectivePropTags.js +++ b/app/imports/api/engine/computation/utility/getEffectivePropTags.js @@ -9,6 +9,7 @@ export default function getEffectivePropTags(prop) { } // Tags for some string properties + if (prop.variableName) tags.push(prop.variableName); if (prop.damageType) tags.push(prop.damageType); if (prop.skillType) tags.push(prop.skillType); if (prop.attributeType) tags.push(prop.attributeType);