From ae10824ebc5a114a3a520bee4d0e9a4bfd9c6373 Mon Sep 17 00:00:00 2001 From: Kevin Lyles Date: Wed, 1 Jan 2014 10:33:36 -0600 Subject: [PATCH] Fixed a case where we would try the wrong colors for sha-touched sockets --- WeightsWatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeightsWatcher.lua b/WeightsWatcher.lua index 9391059..34d2298 100644 --- a/WeightsWatcher.lua +++ b/WeightsWatcher.lua @@ -101,7 +101,7 @@ local ww_weightIdealCacheWeightMetatable = { table.insert(bestGems, idealGems[color]) gemScore = gemScore + idealGems[color .. "Score"] if breakSocketColors then - if color ~= "meta" and color ~= "cogwheel" then + if color ~= "meta" and color ~= "cogwheel" and color ~= "sha-touched" then color = "prismatic" end table.insert(bestGemsIgnoreSocket, idealGems[color]) -- 1.7.9.5