mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Fix gen4 HM07/HM08
Gen5/6 had dummied these items; since they aren't dummied in G4 we need to manually override the value from ??? to HM06+1 and HM06+2 Thanks msbhvn & Liger0!
This commit is contained in:
parent
e290443d4e
commit
829867d275
1 changed files with 3 additions and 0 deletions
|
@ -1080,6 +1080,9 @@ namespace PKHeX
|
|||
}
|
||||
|
||||
// Fix Item Names (Duplicate entries)
|
||||
int len = itemlist[425].Length;
|
||||
itemlist[426] = itemlist[425].Substring(0, len-1) + (char)(itemlist[425][len-1]+1) + " (G4)";
|
||||
itemlist[427] = itemlist[425].Substring(0, len-1) + (char)(itemlist[425][len-1]+2) + " (G4)";
|
||||
itemlist[456] += " (HG/SS)"; // S.S. Ticket
|
||||
itemlist[736] += " (OR/AS)"; // S.S. Ticket
|
||||
itemlist[463] += " (DPPt)"; // Storage Key
|
||||
|
|
Loading…
Reference in a new issue