mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Update SAV1Stadium.cs
This commit is contained in:
parent
bb65f2d2c2
commit
79f60d2236
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ namespace PKHeX.Core
|
|||
var str = GetString(otOfs, Japanese ? 5 : 7);
|
||||
if (string.IsNullOrWhiteSpace(str))
|
||||
return name;
|
||||
var idOfs = ofs + (Japanese ? 0xC : 0x8);
|
||||
var idOfs = ofs + (Japanese ? 0x8 : 0xC);
|
||||
var id = BigEndian.ToUInt16(Data, idOfs);
|
||||
return $"{name} [{id:D5}:{str}]";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue