HOTFIX: monster roll

master
U~man 2020-07-09 14:56:33 +02:00
parent de10cdc47d
commit 247fbe572a
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ export class OseActor extends Actor {
const rollParts = ["1d20"];
const dmgParts = [];
if ((!attData.dmg || !game.settings.get("ose", "variableWeaponDamage")) &&
if (!attData.dmg || (!game.settings.get("ose", "variableWeaponDamage")) &&
this.data.type == "character") {
dmgParts.push("1d6");
} else {