Merge main into mod-panel

This commit is contained in:
jvyden 2022-06-10 04:01:06 -04:00
commit b2e6f25265
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
38 changed files with 468 additions and 139 deletions

View file

@ -42,7 +42,7 @@ public class RoomVisualizerController : ControllerBase
#if !DEBUG
return this.NotFound();
#else
RoomHelper.Rooms.RemoveAll();
lock(RoomHelper.RoomLock) RoomHelper.Rooms.RemoveAll();
return this.Redirect("/debug/roomVisualizer");
#endif
}