From 8941dd39deaca15b2d6024195ff806f84f9351a7 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Wed, 18 May 2016 19:07:25 -0700 Subject: [PATCH] Fix non-event event location Deoxys (story) is the only other pkm that can be received with a fateful encounter, so exclude it. --- Misc/PK6.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/PK6.cs b/Misc/PK6.cs index 9737cd651..c4f0b1103 100644 --- a/Misc/PK6.cs +++ b/Misc/PK6.cs @@ -750,7 +750,7 @@ namespace PKHeX // Legality Properties public bool WasLink => Met_Location == 30011; public bool WasEgg => Legal.EggLocations.Contains(Egg_Location); - public bool WasEvent => Met_Location > 40000 && Met_Location < 50000; + public bool WasEvent => Met_Location > 40000 && Met_Location < 50000 || FatefulEncounter && Species != 386; public bool WasEventEgg => ((Egg_Location > 40000 && Egg_Location < 50000) || (FatefulEncounter && Egg_Location == 30002)) && Met_Level == 1; public bool WasTradedEgg => Egg_Location == 30002; public bool WasIngameTrade => Met_Location == 30001;