Change MAX_PER_GROUP to test with 6 gamers connected

This commit is contained in:
Gregoire Parant 2020-06-24 22:21:32 +02:00
parent 9962ca2d48
commit 3ef652b085
2 changed files with 11 additions and 5 deletions

View file

@ -4,7 +4,7 @@ import {PositionInterface} from "_Model/PositionInterface";
import {uuid} from "uuidv4";
export class Group {
static readonly MAX_PER_GROUP = 4;
static readonly MAX_PER_GROUP = 6;
private id: string;
private users: UserInterface[];