# HG changeset patch # User Zerotorescue # Date 1296997241 -3600 # Node ID 70daa765e2754b4c91275231f3885bc780e1ddce # Parent fbd52851dcd1660755b53524a2cef0b21326719a Now using the best item count addon available when the selected is unavailable, rather than a random. diff -r fbd52851dcd1 -r 70daa765e275 Modules/Config.lua --- a/Modules/Config.lua Sun Feb 06 14:00:19 2011 +0100 +++ b/Modules/Config.lua Sun Feb 06 14:00:41 2011 +0100 @@ -724,7 +724,7 @@ end if preferedAddon ~= selectedAddonName then - t = t .. "\n\n|cffff0000You have selected |cfffed000" .. preferedAddon .. "|r|cffff0000 as your item count addon, but this appears to be disabled and thus a random alternative was selected.|r"; + t = t .. "\n\n|cffff0000You have selected |cfffed000" .. preferedAddon .. "|r|cffff0000 as your item count addon, but this appears to be disabled and thus the best alternative was selected.|r"; end end @@ -780,7 +780,7 @@ order = 20, type = "select", name = "Prefered item count addon", - desc = "Select the addon you prefer data for this group to be retrieved from. A random supported addon will be used if the selected addon can not be found.", + desc = "Select the addon you prefer data for this group to be retrieved from. The best supported addon will be used if the selected addon can not be found.", values = function() local temp = {}; for name, value in pairs(addon.supportedAddons.itemCount) do @@ -1738,7 +1738,7 @@ end if preferedAddon ~= selectedAddonName then - t = t .. "\n\n|cffff0000You have selected |cfffed000" .. preferedAddon .. "|r|cffff0000 as your item count addon, but this appears to be disabled and thus a random alternative was selected.|r"; + t = t .. "\n\n|cffff0000You have selected |cfffed000" .. preferedAddon .. "|r|cffff0000 as your item count addon, but this appears to be disabled and thus the best alternative was selected.|r"; end end @@ -1776,7 +1776,7 @@ order = 20, type = "select", name = "Prefered item count addon", - desc = "Select the addon you prefer data to be retrieved from. A random supported addon will be used if the selected addon can not be found.", + desc = "Select the addon you prefer data to be retrieved from. The best supported addon will be used if the selected addon can not be found.", values = function() local temp = {}; for name, value in pairs(addon.supportedAddons.itemCount) do