Various fixes for TMR, WIP

This commit is contained in:
2021-03-28 22:37:04 +02:00
parent f043c3b504
commit 36df301144
7 changed files with 15 additions and 13 deletions

View File

@ -72,7 +72,7 @@ export class Misc {
}
static rollOneOf(array) {
return array[new Roll("1d" + array.length).evaluate().total - 1];
return array[new Roll("1d" + array.length).evaluate( { async: false} ).total - 1];
}
static distinct(array) {