From 8f88e630c277da4e68ba2bba17ac8c2a882445c5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 7 Jul 2019 08:43:58 -0700 Subject: [PATCH] Fix ORAS inventory class type now no longer removes items from pouch https://projectpokemon.org/home/forums/topic/53761-oras-item-problems-with-new-version/ --- PKHeX.Core/Saves/SAV6AO.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/SAV6AO.cs b/PKHeX.Core/Saves/SAV6AO.cs index 7bde53223..a8a1dfcb7 100644 --- a/PKHeX.Core/Saves/SAV6AO.cs +++ b/PKHeX.Core/Saves/SAV6AO.cs @@ -148,7 +148,7 @@ private void Initialize() /* 56: 33000-67AD0, 34AD0 */ Box = 0x33000; /* 57: 67C00-75C58, 0E058 */ JPEG = 0x67C00; - Items = new MyItem6XY(this, 0x00400); + Items = new MyItem6AO(this, 0x00400); PuffBlock = new Puff6(this, 0x0000); GameTime = new GameTime6(this, 0x01200); Situation = new Situation6(this, 0x01400);