From b6bc5e4b3488b039c5c4340fa298dc845b8a2e2f Mon Sep 17 00:00:00 2001 From: RubenatorX Date: Sun, 13 Oct 2019 18:41:54 -0600 Subject: [PATCH 1/2] EasyNuke fix got pushed with errors --- addons/EasyNuke/EasyNuke.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/EasyNuke/EasyNuke.lua b/addons/EasyNuke/EasyNuke.lua index 1b3cbb29e..055bcfe9d 100644 --- a/addons/EasyNuke/EasyNuke.lua +++ b/addons/EasyNuke/EasyNuke.lua @@ -139,7 +139,7 @@ windower.register_event("unhandled command", function (command, arg) execute_spell_cast("ra", arg) elseif command == "boomhelix" or command == "bhelix" then execute_spell_cast("helix", arg) - elseif command = "boomam" or command == "bam" then + elseif command == "boomam" or command == "bam" then execute_spell_cast("am", arg) end end) @@ -154,7 +154,7 @@ windower.register_event('addon command', function (command, arg) execute_spell_cast("ra", arg) elseif command == "boomhelix" or command == "bhelix" then execute_spell_cast("helix", arg) - elseif command = "boomam" or command == "bam" then + elseif command == "boomam" or command == "bam" then execute_spell_cast("am", arg) elseif command == "target" then From 018b0c5b6dfcf2b3ab2b7c78d9872ff78ccd52c4 Mon Sep 17 00:00:00 2001 From: Ivaar <7287342+Ivaar@users.noreply.github.com> Date: Sat, 19 Oct 2019 16:33:21 -0700 Subject: [PATCH 2/2] Gearswap: Filter enchanted items with duplicate names. --- addons/GearSwap/gearswap.lua | 2 +- addons/GearSwap/statics.lua | 4 +++- addons/GearSwap/version_history.txt | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/addons/GearSwap/gearswap.lua b/addons/GearSwap/gearswap.lua index b6797d619..f913db5a9 100644 --- a/addons/GearSwap/gearswap.lua +++ b/addons/GearSwap/gearswap.lua @@ -25,7 +25,7 @@ --SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. _addon.name = 'GearSwap' -_addon.version = '0.934' +_addon.version = '0.935' _addon.author = 'Byrth' _addon.commands = {'gs','gearswap'} diff --git a/addons/GearSwap/statics.lua b/addons/GearSwap/statics.lua index 837ce993d..9693b8952 100644 --- a/addons/GearSwap/statics.lua +++ b/addons/GearSwap/statics.lua @@ -99,7 +99,9 @@ end for i,v in pairs(res.items) do v.prefix = '/item' - make_entry(v,i) + if not validabils['english'][v.prefix][v.english:lower()] or v.cast_delay then + make_entry(v,i) + end end -- Should transition these slot maps to be based off res.slots, but it's very unlikely to change. diff --git a/addons/GearSwap/version_history.txt b/addons/GearSwap/version_history.txt index 301a00119..3d4e29ef0 100644 --- a/addons/GearSwap/version_history.txt +++ b/addons/GearSwap/version_history.txt @@ -1,5 +1,6 @@ ------------------------------------------------- - +GearSwap 0.935 - Filter enchanted items with duplicate names. +------------------------------------------------- GearSwap 0.934 - Fixed /item command handling. ------------------------------------------------- GearSwap 0.933 - Adjusted how item use packets are chosen.