diff --git a/PKHeX.Core/Legality/Areas/EncounterArea8g.cs b/PKHeX.Core/Legality/Areas/EncounterArea8g.cs index ec8f99d8d..33bec92d3 100644 --- a/PKHeX.Core/Legality/Areas/EncounterArea8g.cs +++ b/PKHeX.Core/Legality/Areas/EncounterArea8g.cs @@ -82,6 +82,8 @@ namespace PKHeX.Core return true; if (AltFormInfo.IsFusedForm(species, f, 8)) return true; + if (species == (int) Species.Mothim) + return f != 0; // Reverts to Plant Cloak on transfer. return false; }