From b3ba56031dafe5a32e716465324ee3fa82a50b5b Mon Sep 17 00:00:00 2001 From: Daniel Einspanjer Date: Fri, 18 Feb 2022 08:23:51 -0500 Subject: [PATCH] Remove extraneous `end` keyword This is causing the addon to throw an error on load that hangs the entire game requiring the user to end the task and disable the addon or manually patch. --- CraftStore.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CraftStore.lua b/CraftStore.lua index f759cbf..10bbdb8 100644 --- a/CraftStore.lua +++ b/CraftStore.lua @@ -513,7 +513,7 @@ function CS.Queue() end end if ZO_Provisioner_IsSceneShowing() and CS.Account.options.usecook then - ZO_ProvisionerTopLevelTooltip:SetHidden(true) end + ZO_ProvisionerTopLevelTooltip:SetHidden(true) if PP ~= nil then ZO_ProvisionerTopLevel:SetHidden(true) end end if CS.Inspiration ~= '' then @@ -3982,4 +3982,4 @@ SLASH_COMMANDS["/craftstore"] = CS.ShowMain SLASH_COMMANDS["/cspurge"] = CS.StoragePurge SLASH_COMMANDS["/csrepair"] = CS.RepairStored SLASH_COMMANDS["/csrepairknowledge"] = CS.UpdateRecipeKnowledge -SLASH_COMMANDS["/csremovechar"] = CS.RemoveCharacter \ No newline at end of file +SLASH_COMMANDS["/csremovechar"] = CS.RemoveCharacter