From e956bacf077672ec9950bc786fc35ee7cd400328 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Mon, 10 Oct 2022 16:49:10 +0200 Subject: [PATCH] Added actionType to effective tags --- .../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 c8ebe65b..f6fe47e6 100644 --- a/app/imports/api/engine/computation/utility/getEffectivePropTags.js +++ b/app/imports/api/engine/computation/utility/getEffectivePropTags.js @@ -12,6 +12,7 @@ export default function getEffectivePropTags(prop) { if (prop.variableName) tags.push(prop.variableName); if (prop.damageType) tags.push(prop.damageType); if (prop.skillType) tags.push(prop.skillType); + if (prop.actionType) tags.push(prop.actionType); if (prop.attributeType) tags.push(prop.attributeType); if (prop.reset) tags.push(prop.reset); return tags;