Parcourir la source

fix bug on mapping

Christopher Smith il y a 2 ans
Parent
commit
ae03019eef
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      HuntBuddy/Plugin.cs

+ 1 - 1
HuntBuddy/Plugin.cs

@@ -222,7 +222,7 @@ namespace HuntBuddy
 							break;
 						}
 						foreach (string expac in this.MobHuntEntries.Keys) {
-							Chat.Print($"{expac}: {string.Join(", ", this.MobHuntEntries[expac].Values.SelectMany(e => e).OrderBy(s => s.Name))}");
+							Chat.Print($"{expac}: {string.Join(", ", this.MobHuntEntries[expac].Values.SelectMany(e => e).OrderBy(s => s.Name).Select(m => m.Name))}");
 						}
 						break;
 					default: