Fix DR/Parry bonuses
This commit is contained in:
		| @@ -708,7 +708,7 @@ export class WarheroActor extends Actor { | |||||||
|   } |   } | ||||||
|   /* -------------------------------------------- */ |   /* -------------------------------------------- */ | ||||||
|   computeDRTotal() { |   computeDRTotal() { | ||||||
|     let armors = this.items.filter(it => it.type == "armor") |     let armors = this.items.filter(it => it.type == "armor" && it.system.slotlocation == 'armor') | ||||||
|     let dr = 0 |     let dr = 0 | ||||||
|     for (let armor of armors) { |     for (let armor of armors) { | ||||||
|       dr += armor.system.damagereduction |       dr += armor.system.damagereduction | ||||||
| @@ -717,7 +717,7 @@ export class WarheroActor extends Actor { | |||||||
|   } |   } | ||||||
|   /* -------------------------------------------- */ |   /* -------------------------------------------- */ | ||||||
|   computeParryBonusTotal() { |   computeParryBonusTotal() { | ||||||
|     let shields = this.items.filter(it => it.type == "shield") |     let shields = this.items.filter(it => it.type == "shield" && it.system.slotlocation == 'shield') | ||||||
|     let parry = 0 |     let parry = 0 | ||||||
|     for (let shield of shields) { |     for (let shield of shields) { | ||||||
|       parry += shield.system.parrybonus |       parry += shield.system.parrybonus | ||||||
|   | |||||||
| @@ -107,7 +107,7 @@ | |||||||
|   "styles": [ |   "styles": [ | ||||||
|     "styles/simple.css" |     "styles/simple.css" | ||||||
|   ], |   ], | ||||||
|   "version": "10.0.43", |   "version": "10.0.44", | ||||||
|   "compatibility": { |   "compatibility": { | ||||||
|     "minimum": "10", |     "minimum": "10", | ||||||
|     "verified": "10", |     "verified": "10", | ||||||
| @@ -115,7 +115,7 @@ | |||||||
|   }, |   }, | ||||||
|   "title": "Warhero RPG", |   "title": "Warhero RPG", | ||||||
|   "manifest": "https://www.uberwald.me/gitea/public/fvtt-warhero/raw/branch/master/system.json", |   "manifest": "https://www.uberwald.me/gitea/public/fvtt-warhero/raw/branch/master/system.json", | ||||||
|   "download": "https://www.uberwald.me/gitea/uberwald/fvtt-warhero/archive/fvtt-warhero-10.0.43.zip", |   "download": "https://www.uberwald.me/gitea/uberwald/fvtt-warhero/archive/fvtt-warhero-10.0.44.zip", | ||||||
|   "url": "https://www.uberwald.me/gitea/public/fvtt-warhero", |   "url": "https://www.uberwald.me/gitea/public/fvtt-warhero", | ||||||
|   "background": "images/ui/warhero_welcome_page.webp", |   "background": "images/ui/warhero_welcome_page.webp", | ||||||
|   "id": "fvtt-warhero" |   "id": "fvtt-warhero" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user