Skip to content

Commit

Permalink
fix threat resources again
Browse files Browse the repository at this point in the history
  • Loading branch information
moo-man committed Jul 5, 2024
1 parent 11b21c6 commit 5ab56a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/model/actor/threat.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ export class ThreatModel extends StandardWNGActorModel {
third: new fields.StringField({ default: "T" }),
fourth: new fields.StringField({ default: "T" })
}),
mob : new fields.NumberField(),
notes : new fields.StringField(),

resources : new fields.SchemaField({
ruin : new fields.NumberField({min : 0}),
})

})
schema.mob = new fields.NumberField(),
schema.resources = new fields.SchemaField({
ruin : new fields.NumberField({min : 0}),
})
return schema;
}
Expand Down

0 comments on commit 5ab56a2

Please sign in to comment.