From 366a6fe9fb161ea9c7e89a83bda751218939eded Mon Sep 17 00:00:00 2001 From: Darthpred Date: Sat, 23 Jul 2016 11:52:10 +0300 Subject: [PATCH] wtf was this logic? --- ElvUI_SLE/modules/professions/fishing.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElvUI_SLE/modules/professions/fishing.lua b/ElvUI_SLE/modules/professions/fishing.lua index 3bbd1ce..d254c5b 100644 --- a/ElvUI_SLE/modules/professions/fishing.lua +++ b/ElvUI_SLE/modules/professions/fishing.lua @@ -75,7 +75,7 @@ end function Pr:FishCasting() -- put on a lure if we need to local key = Pr.FishingKey - if (key == "None" and FL:IsFishingReady(false)) or (not key ~= "None" and _G["Is"..key.."KeyDown"]()) then + if (key == "None" and FL:IsFishingReady(false)) or (key ~= "None" and _G["Is"..key.."KeyDown"]()) then local update, id, n = Pr:GetUpdateLure(); if (update and id) then FL:InvokeLuring(id); -- 1.7.9.5