Skip to content

Commit

Permalink
Merge pull request #121 from WoD5E-Developers/dev
Browse files Browse the repository at this point in the history
Dev -> Main Merge for 5.0.6 Release
  • Loading branch information
Veilza authored Nov 9, 2024
2 parents d2a979a + 2987a00 commit 064301e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "vtm5e",
"title": "World of Darkness 5e",
"description": "World of Darkness 5e system for Foundry VTT",
"version": "5.0.5",
"version": "5.0.6",
"compatibility": {
"minimum": "12",
"verified": "12.331",
Expand Down Expand Up @@ -267,8 +267,8 @@
"url": "https://github.com/WoD5E-Developers/wod5e",
"bugs": "https://github.com/WoD5E-Developers/wod5e/issues",
"background": "systems/vtm5e/assets/images/wodcity.jpg",
"manifest": "https://github.com/WoD5E-Developers/wod5e/releases/download/5.0.5/system.json",
"download": "https://github.com/WoD5E-Developers/wod5e/releases/download/5.0.5/vtm5e.zip",
"manifest": "https://github.com/WoD5E-Developers/wod5e/releases/download/5.0.6/system.json",
"download": "https://github.com/WoD5E-Developers/wod5e/releases/download/5.0.6/vtm5e.zip",
"flags": {
"hotReload": {
"extensions": [
Expand Down
1 change: 1 addition & 0 deletions system/actor/vtm/scripts/frenzy-roll.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const _onFrenzyRoll = async function (event) {
basicDice: dicePool,
title: game.i18n.localize('WOD5E.VTM.ResistingFrenzy'),
actor,
selectors: ['frenzy'],
data: actor.system,
disableAdvancedDice: true,
callback: async (err, result) => {
Expand Down
2 changes: 1 addition & 1 deletion system/scripts/system-rolls.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class WOD5eDice {
...roll,
system,
difficulty,
rollSuccessful: (roll.total >= difficulty) || (roll.total > 0 && difficulty === 0),
rollSuccessful: roll.total > 0 && ((roll.total >= difficulty) || (difficulty === 0)),
rollMode
}
)
Expand Down

0 comments on commit 064301e

Please sign in to comment.