diff --git a/Libraries/Core/Helpers/BotHelper.cs b/Libraries/Core/Helpers/BotHelper.cs index 88f0adf1..0646b7ce 100644 --- a/Libraries/Core/Helpers/BotHelper.cs +++ b/Libraries/Core/Helpers/BotHelper.cs @@ -199,7 +199,7 @@ public class BotHelper( $"Unable to filter: {randomType} PMC names to only those under: {maxLength}, none found that match that criteria, selecting from entire name pool instead`,\n" ); - return _randomUtil.GetCollectionValue(allNames); + return _randomUtil.GetCollectionValue(allNames.ToList()); } return _randomUtil.GetCollectionValue(filteredNames.ToList());