Before You Report
Version
1.1.4
Description
Despite SubDoors' arrays not being empty, none of them contains any existing door from Door.List.
To Reproduce
public void OnMapGenerated(MapGeneratedEventArgs _)
{
var subdoors = Door.List.Where(d => CheckpointDoor.List.SelectMany(c => c.SubDoors).Contains(d));
Log.Debug($"subdoors count = {subdoors.Count()}");
}
Expected Behavior
The count will be 0.
Additional Information
N/A