Make it so requesting data from offline users shows disconnected initially
This commit is contained in:
parent
c6f14b3c21
commit
44977c95cc
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ export async function query(
|
||||||
/** @type {UserStatus} */
|
/** @type {UserStatus} */
|
||||||
const status = {};
|
const status = {};
|
||||||
for (const user of users) {
|
for (const user of users) {
|
||||||
status[user] = game.users.get(user).active ? `waiting` : `unprompted`;
|
status[user] = game.users.get(user).active ? `waiting` : `disconnected`;
|
||||||
};
|
};
|
||||||
|
|
||||||
queries.set(
|
queries.set(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue