Skip to content

Commit

Permalink
Prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mclemente committed Oct 27, 2023
1 parent a199850 commit 1c5d47c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module/SystemProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ export class cyphersystemProvider extends SystemProvider {

getActorDetails(actor) {
const data = actor.system;
if (actor.type!=='pc') return;
if (actor.type !== "pc") return;
return {
id: actor.id,
name: actor.name,
Expand All @@ -1329,14 +1329,14 @@ export class cyphersystemProvider extends SystemProvider {
armorValueTotal: data.combat.armor.ratingTotal,
speedCostTotal: data.combat.armor.costTotal,
damageTrack: data.combat.damageTrack.state,
}
};
}

getUpdate(actors) {
return [
actors,
{
showAdditional: actors.some((actor) => actor.type === 'pc' && actor.additionalPool.active),
showAdditional: actors.some((actor) => actor.type === "pc" && actor.additionalPool.active),
},
];
}
Expand Down

0 comments on commit 1c5d47c

Please sign in to comment.