We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b48a0 commit 935b0acCopy full SHA for 935b0ac
HomeLive.Core/Classes/LegalityHandler.cs
@@ -14,6 +14,7 @@ public static PKM FixLegality(this PKM pkm)
14
var clone = pkm.Clone();
15
clone.Heal();
16
clone.FixCopyHeight();
17
+ clone.FixConversionSV();
18
clone.FixConversionPLA();
19
clone.FixConversionBDSP();
20
clone.FixConversionLGPE();
@@ -179,6 +180,12 @@ private static void FixConversionLGPE(this PKM pkm)
179
180
pkm.SetAbilityIndex(index);
181
}
182
183
+ if (legality.Results.Any(r => r.Identifier is CheckIdentifier.Encounter && r.Judgement is Severity.Invalid) && legality.EncounterMatch is WB7 { CardID: 9028 } wb7)
184
+ {
185
+ pb7.HeightAbsolute = wb7.GetHomeHeightAbsolute();
186
+ pb7.WeightAbsolute = wb7.GetHomeWeightAbsolute();
187
+ }
188
+
189
pb7.ResetCP();
190
191
0 commit comments