parent
e111e70129
commit
455a64c0a1
|
@ -29,6 +29,11 @@ export class AcksDice {
|
||||||
} else {
|
} else {
|
||||||
result.isFailure = true;
|
result.isFailure = true;
|
||||||
}
|
}
|
||||||
|
} else if (data.roll.type == "hitdice") {
|
||||||
|
// RESULT CAN BE NO LOWER THAN 1
|
||||||
|
if (roll.total < 1) {
|
||||||
|
roll._total = 1;
|
||||||
|
}
|
||||||
} else if (data.roll.type == "table") {
|
} else if (data.roll.type == "table") {
|
||||||
// Reaction
|
// Reaction
|
||||||
let table = data.roll.table;
|
let table = data.roll.table;
|
||||||
|
|
Loading…
Reference in New Issue