Because just the top-level field changing invalidates everything in the sub-document, a single attribute change would trigger a re-calculation on all attributes and their dependents. This change should significantly improve performance.
10 lines
357 B
JavaScript
10 lines
357 B
JavaScript
Schemas.Feature = new SimpleSchema({
|
|
_id: {type: String, regEx: SimpleSchema.RegEx.Id},
|
|
name: {type: String},
|
|
description:{type: String},
|
|
buffs: {type: [Schemas.Buff], optional: true},
|
|
enabled: {type: Boolean},
|
|
expires: {type: Number, optional: true},
|
|
duration: {type: Number, optional: true},
|
|
uses: {type: Number, min: 0, optional: true},
|
|
}); |