From e1912f151b89194ac4c100b4a047e40eee54aae2 Mon Sep 17 00:00:00 2001 From: jvyden Date: Tue, 18 Jan 2022 21:34:07 -0500 Subject: [PATCH] Clean up rooms after updating players in a room --- ProjectLighthouse/Controllers/MatchController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectLighthouse/Controllers/MatchController.cs b/ProjectLighthouse/Controllers/MatchController.cs index e657b7d3..95ab7a7e 100644 --- a/ProjectLighthouse/Controllers/MatchController.cs +++ b/ProjectLighthouse/Controllers/MatchController.cs @@ -131,6 +131,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers } room.Players = users; + RoomHelper.CleanupRooms(user, room); } }