Misc tweaks

No functional change
This commit is contained in:
Kurt
2025-07-04 01:32:25 -05:00
parent a471f1bd8c
commit c19a4605d5
24 changed files with 45 additions and 31 deletions

View File

@@ -55,7 +55,7 @@ private void PopEntry(ushort species, byte form, string name, IPersonalTable pt)
int c = 0;
var bst = p.GetBaseStatTotal();
cells[c++].Value = species.ToString(pt.MaxSpeciesID > 999 ? "0000" : "000") + (form > 0 ? $"-{form:00}" : "");
cells[c++].Value = species.ToString(pt.MaxSpeciesID > 999 ? "0000" : "000") + (form > 0 ? $"-{form:00}" : string.Empty);
cells[c++].Value = SpriteUtil.GetSprite(species, form, 0, 0, 0, false, Shiny.Never, SAV.Context);
cells[c++].Value = name;
cells[c++].Value = GetIsNative(p, species);