You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 23, 2023. It is now read-only.
Communication.SendPublicInformation($"[NOTICE]: Cleanup triggered. ({gridsCount} of {item.MaxCapacity}) triggered grids found. Cleanup will run in {item.MinutesAfterCapacity} minutes.Reason: {item.Reason}");
126
+
Communication.SendPublicInformation($"[NOTICE]: Cleanup triggered. ({gridsCount} of {item.MaxCapacity}) triggered grids found. Cleanup will run in {item.MinutesAfterCapacity} minutes.{(item.Reason==string.Empty?"":$" Reason: {item.Reason}")}");
returngroup.CubeBlocks.Any( x =>x?.FatBlock?.DisplayName!=null&&x.FatBlock.Name.Contains(customName,StringComparison.CurrentCultureIgnoreCase));
1020
+
returngroup.CubeBlocks.Any( x =>x?.FatBlock?.DisplayNameText!=null&&x.FatBlock.DisplayNameText.Contains(customName,StringComparison.CurrentCultureIgnoreCase));
1022
1021
else
1023
-
returngroup.CubeBlocks.Any( x =>x?.FatBlock?.DisplayName!=null&&x.FatBlock.Name.Equals(customName,StringComparison.CurrentCultureIgnoreCase));
1022
+
returngroup.CubeBlocks.Any( x =>x?.FatBlock?.DisplayNameText!=null&&x.FatBlock.DisplayNameText.Equals(customName,StringComparison.CurrentCultureIgnoreCase));
0 commit comments