From 39048fcf28c1a931e813c880a26e14ac7fd60774 Mon Sep 17 00:00:00 2001 From: jvyden Date: Tue, 18 Jan 2022 21:44:14 -0500 Subject: [PATCH] Dont use host when cleaning up after updating players in room --- ProjectLighthouse/Controllers/MatchController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Controllers/MatchController.cs b/ProjectLighthouse/Controllers/MatchController.cs index 95ab7a7e..c897614c 100644 --- a/ProjectLighthouse/Controllers/MatchController.cs +++ b/ProjectLighthouse/Controllers/MatchController.cs @@ -131,7 +131,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers } room.Players = users; - RoomHelper.CleanupRooms(user, room); + RoomHelper.CleanupRooms(null, room); } }