Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Veilza committed Aug 18, 2024
1 parent bbf7e79 commit 46daff0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions system/actor/vtm/ghoul-actor-sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,14 @@ export class GhoulActorSheet extends MortalActorSheet {
visible: disciplines[id].visible
}, value)
} else { // Otherwise, add it to the actor and set it as some default data
await actor.update({ [`system.disciplines.${id}`]: {
value: 0,
visible: false,
description: '',
powers: []
} })
await actor.update({
[`system.disciplines.${id}`]: {
value: 0,
visible: false,
description: '',
powers: []
}
})

disciplineData = Object.assign({
value: 0,
Expand Down

0 comments on commit 46daff0

Please sign in to comment.