Properties now have their variable name as a default tag

This commit is contained in:
Stefan Zermatten
2022-08-25 12:15:12 +02:00
parent 1677e8c424
commit 8d729216b5

View File

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