De-uglified "Lv. 100 to 100" text.

This commit is contained in:
Greg Edwards 2015-05-14 01:25:43 -04:00
parent 5983ee485b
commit 90300b0f41

View File

@ -58,6 +58,10 @@ namespace PkmnFoundations.GTS
{
return String.Format("Lv. {0} and up", min);
}
else if (min == max)
{
return String.Format("Lv. {0}", min);
}
else
{
return String.Format("Lv. {0} to {1}", min, max);