From 1914e744af71046f764f1a8a98c9b2d22c12c4b0 Mon Sep 17 00:00:00 2001 From: Crum Date: Mon, 8 Jan 2018 08:08:18 -0600 Subject: [PATCH] oops --- 2/3/4/5/6/7/ElvUI/Modules/Misc/Misc.lua | 3 ++- 2/3/4/5/6/7/ElvUI_Config/General.lua | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/2/3/4/5/6/7/ElvUI/Modules/Misc/Misc.lua b/2/3/4/5/6/7/ElvUI/Modules/Misc/Misc.lua index 3ca4a9b..e3bcbcd 100644 --- a/2/3/4/5/6/7/ElvUI/Modules/Misc/Misc.lua +++ b/2/3/4/5/6/7/ElvUI/Modules/Misc/Misc.lua @@ -88,7 +88,8 @@ function M:MERCHANT_SHOW() local cost, possible = GetRepairAllCost() if cost > 0 then if possible then - E:Print(L["Your items have been repaired for: "]..E:FormatMoney(cost, "BLIZZARD", true)) + RepairAllItems(autoRepair == "PLAYER") + E:Print(L["Your items have been repaired for: "]..E:FormatMoney(cost, "BLIZZARD")) else E:Print(L["You don't have enough money to repair."]) end diff --git a/2/3/4/5/6/7/ElvUI_Config/General.lua b/2/3/4/5/6/7/ElvUI_Config/General.lua index 510e912..88684a8 100644 --- a/2/3/4/5/6/7/ElvUI_Config/General.lua +++ b/2/3/4/5/6/7/ElvUI_Config/General.lua @@ -65,7 +65,6 @@ E.Options.args.general = { desc = L["Automatically repair using the following method when visiting a merchant."], values = { ["NONE"] = NONE, - ["GUILD"] = GUILD, ["PLAYER"] = PLAYER } },