@@ -1081,8 +1081,8 @@ public async Task GetTop10([Remainder] string args = null)
10811081 string guildName = guildObject . guildName ;
10821082 region = guildObject . regionName ;
10831083
1084- var fightList = WarcraftLogs . Zones . Where ( z => z . id == 13 ) . Select ( z => z . encounters ) . FirstOrDefault ( ) ;
1085- raidName = WarcraftLogs . Zones . Where ( z => z . id == 13 ) . Select ( z => z . name ) . FirstOrDefault ( ) ;
1084+ var fightList = WarcraftLogs . Zones . Where ( z => z . id == 17 ) . Select ( z => z . encounters ) . FirstOrDefault ( ) ;
1085+ raidName = WarcraftLogs . Zones . Where ( z => z . id == 17 ) . Select ( z => z . name ) . FirstOrDefault ( ) ;
10861086
10871087 //Get Guild Information for Discord Server (or channel for DM)
10881088 if ( Context . Channel is IDMChannel )
@@ -1104,19 +1104,19 @@ public async Task GetTop10([Remainder] string args = null)
11041104 sb . AppendLine ( $ "Get a list of all encounters and shortcut IDs") ;
11051105 sb . AppendLine ( ) ;
11061106 sb . AppendLine ( $ "**{ Config . Prefix } top10** 1") ;
1107- sb . AppendLine ( $ "The above command would get all top 10 **dps** results for **Goroth ** on **{ realmName } **.") ;
1107+ sb . AppendLine ( $ "The above command would get all top 10 **dps** results for **Garothi Worldbreaker ** on **{ realmName } **.") ;
11081108 sb . AppendLine ( ) ;
11091109 sb . AppendLine ( $ "**{ Config . Prefix } top10** 1, guild") ;
1110- sb . AppendLine ( $ "The above command would get the top 10 **dps** results for **Goroth ** on **{ realmName } ** for **{ guildName } **.") ;
1110+ sb . AppendLine ( $ "The above command would get the top 10 **dps** results for **Garothi Worldbreaker ** on **{ realmName } ** for **{ guildName } **.") ;
11111111 sb . AppendLine ( ) ;
11121112 sb . AppendLine ( $ "**{ Config . Prefix } top10** 1, guild, hps") ;
1113- sb . AppendLine ( $ "The above command would get the top 10 **hps** results for **Goroth ** on **{ realmName } ** for **{ guildName } **.") ;
1113+ sb . AppendLine ( $ "The above command would get the top 10 **hps** results for **Garothi Worldbreaker ** on **{ realmName } ** for **{ guildName } **.") ;
11141114 sb . AppendLine ( ) ;
11151115 sb . AppendLine ( $ "**{ Config . Prefix } top10** 1, all, hps") ;
1116- sb . AppendLine ( $ "The above command would get all top 10 **hps** results for **Goroth ** on **{ realmName } **.") ;
1116+ sb . AppendLine ( $ "The above command would get all top 10 **hps** results for **Garothi Worldbreaker ** on **{ realmName } **.") ;
11171117 sb . AppendLine ( ) ;
11181118 sb . AppendLine ( $ "**{ Config . Prefix } top10** 1, guild, dps, mythic") ;
1119- sb . AppendLine ( $ "The above command would get the top 10 **dps** results for **Goroth ** on **{ realmName } ** for **{ guildName } ** on **mythic** difficulty.") ;
1119+ sb . AppendLine ( $ "The above command would get the top 10 **dps** results for **Garothi Worldbreaker ** on **{ realmName } ** for **{ guildName } ** on **mythic** difficulty.") ;
11201120 embed . Title = $ "{ Context . User . Username } , here are some examples for **{ Config . Prefix } top10**";
11211121 embed . Description = sb . ToString ( ) ;
11221122 await _cc . Reply ( Context , embed ) ;
@@ -1315,7 +1315,7 @@ public async Task GetTop10([Remainder] string args = null)
13151315 }
13161316 else
13171317 {
1318- l = _logsApi . GetRankingsByEncounter ( encounterID , realmName , "2" , metric , difficultyID , region ) ;
1318+ l = _logsApi . GetRankingsByEncounter ( encounterID , realmName , metric , difficultyID , region ) ;
13191319 }
13201320 string fightNameFromEncounterID = fightList . Where ( f => f . id == encounterID ) . Select ( f => f . name ) . FirstOrDefault ( ) ;
13211321 var top10 = l . rankings . OrderByDescending ( a => a . total ) . Take ( 10 ) ;
0 commit comments