From 208c1c285006236277a663b51e3af847bd68029f Mon Sep 17 00:00:00 2001 From: BarstoolPigeon <52869123+BarstoolPigeon@users.noreply.github.com> Date: Tue, 11 May 2021 22:05:27 -0600 Subject: [PATCH 1/3] Added proper zone and menu ids for both Gaol instances --- PorterPacker/PorterPacker.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PorterPacker/PorterPacker.lua b/PorterPacker/PorterPacker.lua index 2c38b36..703c436 100644 --- a/PorterPacker/PorterPacker.lua +++ b/PorterPacker/PorterPacker.lua @@ -33,6 +33,8 @@ local zones = { [252] = 246, -- Norg - (G-7) [256] = 43, -- Western Adoulin - (H-11) [280] = 802, -- Mog Garden + [279] = 11, -- Walk of Echoes [P2] + [298] = 13, -- Walk of Echoes [P1] } local function space_available(bag_id) From 8f96ce903368adf4837bee7421e7ee2782d33b0d Mon Sep 17 00:00:00 2001 From: BarstoolPigeon <52869123+BarstoolPigeon@users.noreply.github.com> Date: Tue, 11 May 2021 22:13:58 -0600 Subject: [PATCH 2/3] added version update --- PorterPacker/PorterPacker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PorterPacker/PorterPacker.lua b/PorterPacker/PorterPacker.lua index 703c436..3b5436b 100644 --- a/PorterPacker/PorterPacker.lua +++ b/PorterPacker/PorterPacker.lua @@ -1,6 +1,6 @@ _addon.name = 'PorterPacker' _addon.author = 'Ivaar' -_addon.version = '0.0.0.6' +_addon.version = '0.0.0.7' _addon.commands = {'porterpacker','packer','po'} require('pack') From 591f5bd20e45bb459473245d1c37e8b2efff6f8e Mon Sep 17 00:00:00 2001 From: BarstoolPigeon <52869123+BarstoolPigeon@users.noreply.github.com> Date: Wed, 12 May 2021 22:26:05 -0600 Subject: [PATCH 3/3] Corrected error on P2 menu id --- PorterPacker/PorterPacker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PorterPacker/PorterPacker.lua b/PorterPacker/PorterPacker.lua index 3b5436b..15d900f 100644 --- a/PorterPacker/PorterPacker.lua +++ b/PorterPacker/PorterPacker.lua @@ -33,7 +33,7 @@ local zones = { [252] = 246, -- Norg - (G-7) [256] = 43, -- Western Adoulin - (H-11) [280] = 802, -- Mog Garden - [279] = 11, -- Walk of Echoes [P2] + [279] = 13, -- Walk of Echoes [P2] [298] = 13, -- Walk of Echoes [P1] }