fixed ~lolchamp khazix

This commit is contained in:
Master Kwoth 2016-04-19 02:00:25 +02:00
parent 54327dec9d
commit d7e0a0662e

View File

@ -190,6 +190,8 @@ namespace NadekoBot.Modules.Searches.Commands
//draw champ surname
//draw skill order
if (orderArr.Count != 0)
{
float orderFormula = 120 / orderArr.Count;
const float orderVerticalSpacing = 10;
for (var i = 0; i < orderArr.Count; i++)
@ -215,6 +217,7 @@ namespace NadekoBot.Modules.Searches.Commands
g.DrawString(spellName.ToUpperInvariant(), new Font("Monaco", 7), Brushes.LimeGreen, orderX, orderY);
}
}
//draw roles
g.DrawString("Roles: " + string.Join(", ", roles), normalFont, Brushes.WhiteSmoke, margin, margin + imageSize + margin);