diff --git a/README.md b/README.md index 84684420..ebbb70b5 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ Compendium 'Weapons' contains a single test weapon. ## What is working +version 0.2.3 : + +* Hotfix. + version 0.2.2 : * PDFoundry Integration. diff --git a/module/chat/rangecombat.js b/module/chat/rangecombat.js index 283b259f..8aab8456 100644 --- a/module/chat/rangecombat.js +++ b/module/chat/rangecombat.js @@ -479,7 +479,7 @@ export class CoC7RangeInitiator{ const normalDamageRoll = this.weapon.data.data.range.normal.damage; const normalDamageDie = CoC7Damage.getMainDie( normalDamageRoll); const maxDamage = Roll.maximize( normalDamageRoll).total; - const criticalDamageRoll = this.weapon.impale ? `${normalDamageRoll} + ${maxDamage}` : maxDamage; + const criticalDamageRoll = this.weapon.impale ? `${normalDamageRoll} + ${maxDamage}` : `${maxDamage}`; const criticalDamageDie = CoC7Damage.getMainDie( criticalDamageRoll); const hits=this.successfulHits; diff --git a/system.json b/system.json index ea58cf6a..41fe568a 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "name": "CoC7", "title": "The Call of Cthulhu 7th edition", "description": "The Call of Cthulhu 7th edition simple game system", - "version": "0.2.2", + "version": "0.2.3", "author": "HavelockV", "minimumCoreVersion": "0.5.2", "compatibleCoreVersion": "0.6.5", @@ -69,6 +69,6 @@ "secondaryTokenAttribute": "power", "url": "https://github.com/HavlockV/CoC7-FoundryVTT/", "manifest": "https://github.com/HavlockV/CoC7-FoundryVTT/raw/master/system.json", - "download": "https://github.com/HavlockV/CoC7-FoundryVTT/archive/0.2.2.zip" + "download": "https://github.com/HavlockV/CoC7-FoundryVTT/archive/0.2.3.zip" } \ No newline at end of file