Migrate to Foundryvtt v10

This commit is contained in:
2022-09-16 22:33:54 +02:00
parent 3bdb4d8d6c
commit bfc7fb4955
2 changed files with 6 additions and 4 deletions

View File

@@ -307,7 +307,7 @@ function isResponsibleGM() {
if (!game.user.isGM)
return false;
const connectedGMs = game.users.filter(isActiveGM);
return !connectedGMs.some(other => other.data._id < game.user.data._id);
return !connectedGMs.some(other => other.id < game.user.id);
}
function isActiveGM(user) {