From 66caee41b9c0bf33cb2057904ae2f4856a196432 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 26 Nov 2014 23:06:10 -0800 Subject: [PATCH] Fix item duplication issue with Inventory Editor --- PKX/f1-Main.cs | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index 18afbf6e8..d2edd4b44 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -6251,10 +6251,20 @@ private void InitializeStrings() abilitylist[0] = itemlist[0] = movelist[0] = "("+itemlist[0]+")"; // Fix Item Names (Duplicate entries) - itemlist[456] += " (OLD)"; - itemlist[629] += " (2)"; - itemlist[707] += " (2)"; - itemlist[713] += " (2)"; + itemlist[456] += " (OLD)"; // S.S. Ticket + itemlist[463] += " (OLD)"; // Storage Key + itemlist[478] += " (OLD)"; // Basement Key + itemlist[626] += " (2)"; // Xtransceiver + itemlist[629] += " (2)"; // DNA Splicers + itemlist[637] += " (2)"; // Dropped Item + itemlist[707] += " (2)"; // Travel Trunk + itemlist[713] += " (2)"; // Alt Bike + itemlist[714] += " (2)"; // Holo Caster + itemlist[729] += " (1)"; // Meteorite + itemlist[740] += " (2)"; // Contest Costume + itemlist[751] += " (2)"; // Meteorite + itemlist[771] += " (3)"; // Meteorite + itemlist[772] += " (4)"; // Meteorite // Get the Egg Name and then replace it with --- for the comboboxes. eggname = specieslist[0];