successful editing of role list

This commit is contained in:
AlecM33
2023-08-03 16:52:03 -04:00
parent 0d82227824
commit 24ae53209f
19 changed files with 260 additions and 103 deletions

View File

@@ -302,6 +302,10 @@ class GameManager {
return array;
};
deal = () => {
}
isGameFull = (game) => {
return !game.people.find((person) => person.userType === globals.USER_TYPES.PLAYER && person.assigned === false);
}