improved field naming for damage multiplier tag targeting

This commit is contained in:
Thaum Rystra
2020-05-28 15:47:02 +02:00
parent 66e25c53d0
commit 14f5c3e797

View File

@@ -34,11 +34,11 @@ let DamageMultiplierSchema = new SimpleSchema({
type: String, type: String,
}, },
// Tags which must be present to be affected by this multiplier (AND) // Tags which must be present to be affected by this multiplier (AND)
targetTags: { includeTags: {
type: Array, type: Array,
defaultValue: [], defaultValue: [],
}, },
'targetTags.$': { 'includeTags.$': {
type: String, type: String,
}, },
}); });