diff --git a/NewHorizons/External/Configs/PlanetConfig.cs b/NewHorizons/External/Configs/PlanetConfig.cs index 0d268192..c5ef092c 100644 --- a/NewHorizons/External/Configs/PlanetConfig.cs +++ b/NewHorizons/External/Configs/PlanetConfig.cs @@ -711,7 +711,7 @@ namespace NewHorizons.External.Configs { var socketQuantumGroups = Props.quantumGroups.Where(x => x.type == QuantumGroupType.Sockets).Select(x => new SocketQuantumGroupInfo() { - rename = "Quantum Shuffle - " + x.id, + rename = "Quantum Sockets - " + x.id, sockets = x.sockets, details = Props.details.Where(y => y.quantumGroupID == x.id).Select(x => new QuantumDetailInfo(x)).ToArray() }); @@ -721,7 +721,7 @@ namespace NewHorizons.External.Configs } var stateQuantumGroups = Props.quantumGroups.Where(x => x.type == QuantumGroupType.States).Select(x => new StateQuantumGroupInfo() { - rename = "Quantum State - " + x.id, + rename = "Quantum States - " + x.id, hasEmptyState = x.hasEmptyState, loop = x.loop, sequential = x.sequential,