From 9aba524ffebf991e1875da241e544c228950f5ce Mon Sep 17 00:00:00 2001 From: AdAstra-LD <76622070+AdAstra-LD@users.noreply.github.com> Date: Mon, 16 Jan 2023 15:01:15 +0100 Subject: [PATCH] Fixed table editor not unpacking Mon icons [HGSS] --- DS_Map/Main Window.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/DS_Map/Main Window.cs b/DS_Map/Main Window.cs index 9b074b1..c76209d 100644 --- a/DS_Map/Main Window.cs +++ b/DS_Map/Main Window.cs @@ -9197,7 +9197,11 @@ namespace DSPRE { } private void SetupBattleEffectsTables() { if (RomInfo.gameFamily == gFamEnum.HGSS || RomInfo.gameFamily == gFamEnum.Plat) { - DSUtils.TryUnpackNarcs(new List { DirNames.trainerGraphics, DirNames.textArchives }); + DSUtils.TryUnpackNarcs(new List { + DirNames.trainerGraphics, + DirNames.textArchives, + DirNames.monIcons + }); RomInfo.SetBattleEffectsData(); effectsComboTable = new List<(ushort vsGraph, ushort battleSSEQ)>();