From 19f12ca1a8d44c70e098a7b5983dbeef9aadd037 Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Thu, 3 Aug 2023 18:14:30 -0400 Subject: [PATCH] fix failure to assign game property on server side --- server/modules/Events.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/modules/Events.js b/server/modules/Events.js index 0ee647e..70f81db 100644 --- a/server/modules/Events.js +++ b/server/modules/Events.js @@ -51,6 +51,7 @@ const Events = [ (accumulator, currentValue) => accumulator + currentValue.quantity, 0 ); + game.isFull = vars.gameManager.isGameFull(game); } }, communicate: async (game, socketArgs, vars) => {