Added actionType to effective tags

This commit is contained in:
Stefan Zermatten
2022-10-10 16:49:10 +02:00
parent 60b6b283b1
commit e956bacf07

View File

@@ -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;