fixed ~lolchamp khazix
This commit is contained in:
parent
54327dec9d
commit
d7e0a0662e
@ -190,30 +190,33 @@ namespace NadekoBot.Modules.Searches.Commands
|
|||||||
//draw champ surname
|
//draw champ surname
|
||||||
|
|
||||||
//draw skill order
|
//draw skill order
|
||||||
float orderFormula = 120 / orderArr.Count;
|
if (orderArr.Count != 0)
|
||||||
const float orderVerticalSpacing = 10;
|
|
||||||
for (var i = 0; i < orderArr.Count; i++)
|
|
||||||
{
|
{
|
||||||
var orderX = margin + margin + imageSize + orderFormula * i + i;
|
float orderFormula = 120 / orderArr.Count;
|
||||||
float orderY = margin + 35;
|
const float orderVerticalSpacing = 10;
|
||||||
var spellName = orderArr[i].ToString().ToLowerInvariant();
|
for (var i = 0; i < orderArr.Count; i++)
|
||||||
|
|
||||||
switch (spellName)
|
|
||||||
{
|
{
|
||||||
case "w":
|
var orderX = margin + margin + imageSize + orderFormula * i + i;
|
||||||
orderY += orderVerticalSpacing;
|
float orderY = margin + 35;
|
||||||
break;
|
var spellName = orderArr[i].ToString().ToLowerInvariant();
|
||||||
case "e":
|
|
||||||
orderY += orderVerticalSpacing * 2;
|
|
||||||
break;
|
|
||||||
case "r":
|
|
||||||
orderY += orderVerticalSpacing * 3;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
g.DrawString(spellName.ToUpperInvariant(), new Font("Monaco", 7), Brushes.LimeGreen, orderX, orderY);
|
switch (spellName)
|
||||||
|
{
|
||||||
|
case "w":
|
||||||
|
orderY += orderVerticalSpacing;
|
||||||
|
break;
|
||||||
|
case "e":
|
||||||
|
orderY += orderVerticalSpacing * 2;
|
||||||
|
break;
|
||||||
|
case "r":
|
||||||
|
orderY += orderVerticalSpacing * 3;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
g.DrawString(spellName.ToUpperInvariant(), new Font("Monaco", 7), Brushes.LimeGreen, orderX, orderY);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//draw roles
|
//draw roles
|
||||||
g.DrawString("Roles: " + string.Join(", ", roles), normalFont, Brushes.WhiteSmoke, margin, margin + imageSize + margin);
|
g.DrawString("Roles: " + string.Join(", ", roles), normalFont, Brushes.WhiteSmoke, margin, margin + imageSize + margin);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user