fix typo in nameplates

This commit is contained in:
shagu
2016-09-30 17:24:45 +02:00
parent 4ae139b2d5
commit d81b0b4e78
+2 -2
View File
@@ -185,9 +185,9 @@ pfUI:RegisterModule("nameplates", function ()
if pfUI.nameplates.mobs[name:GetText()] and pfUI.nameplates.mobs[name:GetText()] == "elite" and not string.find(level:GetText(), "+") then
level:SetText(level:GetText() .. "+")
elseif pfUI.nameplates.mobs[name:GetText()] and pfUI.nameplates.mobs[name:GetText()] == "rareelite" and not string.find(level:GetText(), "R+") then
level:SetText(Level:GetText() .. "R+")
level:SetText(level:GetText() .. "R+")
elseif pfUI.nameplates.mobs[name:GetText()] and pfUI.nameplates.mobs[name:GetText()] == "rare" and not string.find(level:GetText(), "R") then
level:SetText(Level:GetText() .. "R")
level:SetText(level:GetText() .. "R")
end
end