diff --git a/library/Structures/GtsRecord4.cs b/library/Structures/GtsRecord4.cs index 002acbf7..b1f80bdd 100644 --- a/library/Structures/GtsRecord4.cs +++ b/library/Structures/GtsRecord4.cs @@ -219,7 +219,7 @@ namespace PkmnFoundations.Structures if (thePokemon.Form.Suffix == "primal") return false; if (thePokemon.SpeciesID == 25 && thePokemon.FormID > 0) return false; // cosplay pikachu - if (thePokemon.HeldItemID <= 0) return false; + if (thePokemon.HeldItemID < 0) return false; if (thePokemon.HeldItemID >= 112 && thePokemon.HeldItemID <= 134) return false; if (thePokemon.HeldItemID >= 428) return false; diff --git a/library/Structures/GtsRecord5.cs b/library/Structures/GtsRecord5.cs index cd9dbfa5..4013c7ae 100644 --- a/library/Structures/GtsRecord5.cs +++ b/library/Structures/GtsRecord5.cs @@ -228,7 +228,7 @@ namespace PkmnFoundations.Structures if (thePokemon.Form.Suffix == "primal") return false; if (thePokemon.SpeciesID == 25 && thePokemon.FormID > 0) return false; // cosplay pikachu - if (thePokemon.HeldItemID <= 0) return false; + if (thePokemon.HeldItemID < 0) return false; if (thePokemon.HeldItemID >= 113 && thePokemon.HeldItemID <= 115) return false; if (thePokemon.HeldItemID >= 120 && thePokemon.HeldItemID <= 133) return false; if (thePokemon.HeldItemID >= 328 && thePokemon.HeldItemID <= 503) return false;