fixed incorrect constant
Alex Shubert [03-06-12 - 11:03]
diff --git a/AutoTurnIn.lua b/AutoTurnIn.lua
index 0e2645b..e3b4f33 100644
--- a/AutoTurnIn.lua
+++ b/AutoTurnIn.lua
@@ -76,7 +76,7 @@ function AutoTurnIn:ConsoleComand(arg)
AutoTurnInCharacterDB.dontloot = not AutoTurnInCharacterDB.dontloot
self:Print(L["dontloot"..tostring(AutoTurnInCharacterDB.dontloot)])
elseif arg == "help" then
- self:Print(p1[AutoTurnInCharacterDB.enabled])
+ self:Print(p1[AutoTurnInCharacterDB.enabled == true])
self:Print(p2[AutoTurnInCharacterDB.all])
self:Print(L["dontloot"..tostring(AutoTurnInCharacterDB.dontloot)])
end