Enhance initiative + fix combat

This commit is contained in:
2022-11-30 20:58:27 +01:00
parent b2fe67ab05
commit ac96f3ca67
9 changed files with 46 additions and 36 deletions

View File

@ -178,7 +178,7 @@ export class BoLUtility {
static getOtherWhisperRecipients(name) {
let users = []
for (let user of game.users) {
if (!user.isGM && user.name != name) {
if ( !user.isGM && user.name != name) {
users.push(user.id)
}
}