Sfoglia il codice sorgente

fix bug on mapping

Christopher Smith 2 anni fa
parent
commit
ae03019eef
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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: