mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-25 08:04:27 -05:00
De-uglified "Lv. 100 to 100" text.
This commit is contained in:
parent
5983ee485b
commit
90300b0f41
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user