浏览代码

fix bug on mapping

Christopher Smith 2 年之前
父节点
当前提交
ae03019eef
共有 1 个文件被更改,包括 1 次插入1 次删除
  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: