Skip to content

Commit

Permalink
Manifest file update for 0.74 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaclayton committed Jan 3, 2020
1 parent 7293cc2 commit 006d001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module/item/sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class ItemSheet5e extends ItemSheet {
// Action Details
data.hasAttackRoll = this.item.hasAttack;
data.isHealing = data.item.data.actionType === "heal";
data.isFlatDC = data.item.data.save.scaling === "flat";
data.isFlatDC = getProperty(data.item.data, "save.scaling") === "flat";
return data;
}

Expand Down
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dnd5e",
"title": "Dungeons & Dragons 5th Edition",
"description": "A comprehensive game system for running games of Dungeons & Dragons 5th Edition in the Foundry VTT environment.",
"version": 0.73,
"version": 0.74,
"author": "Atropos",
"templateVersion": 2,
"scripts": [],
Expand Down Expand Up @@ -61,5 +61,5 @@
"minimumCoreVersion": "0.4.2",
"url": "https://gitlab.com/foundrynet/dnd5e",
"manifest": "https://gitlab.com/foundrynet/dnd5e/raw/master/system.json",
"download": "https://gitlab.com/foundrynet/dnd5e/-/archive/master/dnd5e-master.zip"
"download": "https://gitlab.com/foundrynet/dnd5e/-/archive/release-0.7.4/dnd5e-release-0.7.4.zip"
}

0 comments on commit 006d001

Please sign in to comment.