From b1cb5226f704fcb9b0c0b841ddad6ecdeebddd96 Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 10 Apr 2018 17:36:54 -0700 Subject: [PATCH] Fix b2w2 tutor reads yikes what a typo Closes #1895 --- PKHeX.Core/PersonalInfo/PersonalInfoB2W2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PersonalInfo/PersonalInfoB2W2.cs b/PKHeX.Core/PersonalInfo/PersonalInfoB2W2.cs index 26ec460f2..50d24910a 100644 --- a/PKHeX.Core/PersonalInfo/PersonalInfoB2W2.cs +++ b/PKHeX.Core/PersonalInfo/PersonalInfoB2W2.cs @@ -14,7 +14,7 @@ public PersonalInfoB2W2(byte[] data) // Unpack TMHM & Tutors TMHM = GetBits(Data, 0x28, 0x10); - TypeTutors = GetBits(Data, 0x3, 0x4); + TypeTutors = GetBits(Data, 0x38, 0x4); SpecialTutors = new[] { GetBits(Data, 0x3C, 0x04),