Fix #92 armors

This commit is contained in:
2022-10-05 09:16:22 +02:00
parent a763efe873
commit 076945c76f
2 changed files with 5 additions and 5 deletions

View File

@ -249,13 +249,13 @@ export class PegasusActorSheet extends ActorSheet {
this.actor.rollPool( 'def', true, "defence");
});
html.find('.damage-melee').click((event) => {
this.actor.rollPool( 'str', false, "melee-dmg");
this.actor.rollPool( 'str', false, "melee-dmg")
});
html.find('.damage-ranged').click((event) => {
this.actor.rollPool( 'per', false, "ranged-dmg");
});
html.find('.damage-resistance').click((event) => {
this.actor.rollPool( 'phy', false, "dmg-res");
this.actor.rollPool( 'phy', false, "dmg-res")
});
html.find('.roll-stat').click((event) => {