Quantcast

wtf was this logic?

Darthpred [07-23-16 - 08:52]
wtf was this logic?
Filename
ElvUI_SLE/modules/professions/fishing.lua
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);