mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-14 07:49:43 -05:00
always print TMs/HMs with 2
This commit is contained in:
parent
45004eeb83
commit
552236745a
|
|
@ -378,7 +378,8 @@ namespace DSPRE
|
|||
//>=92 --> HM
|
||||
n += 1;
|
||||
int diff = n - PokemonPersonalData.tmsCount;
|
||||
string item = diff > 0 ? "HM" + diff : "TM" + n;
|
||||
string type = diff > 0 ? "HM" : "TM";
|
||||
string item = $"{type}{(diff > 0 ? diff : n):D2}";
|
||||
return item;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user