This commit is contained in:
Crum
2018-01-08 08:08:18 -06:00
parent aa2b36afab
commit 1914e744af
2 changed files with 2 additions and 2 deletions
+2 -1
View File
@@ -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
-1
View File
@@ -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
}
},