From d81b0b4e78c4af0e0efd7df25ea5baad3894e4df Mon Sep 17 00:00:00 2001 From: shagu Date: Fri, 30 Sep 2016 17:24:45 +0200 Subject: [PATCH] fix typo in nameplates --- modules/nameplates.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nameplates.lua b/modules/nameplates.lua index 2428e147..3e14fcc6 100644 --- a/modules/nameplates.lua +++ b/modules/nameplates.lua @@ -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