Mercurial > wow > itemauditor
diff Modules/Events.lua @ 97:028c02f1d47f
Ticket 29 - Changed the Insufficient COD alert to use a case-insensitive comparison on character names.
author | Asa Ayers <Asa.Ayers@Gmail.com> |
---|---|
date | Sat, 14 Aug 2010 06:23:41 -0700 |
parents | 71053b1f6c1c |
children | c59d22fac6d1 |
line wrap: on
line diff
--- a/Modules/Events.lua Thu Aug 12 07:11:57 2010 -0700 +++ b/Modules/Events.lua Sat Aug 14 06:23:41 2010 -0700 @@ -115,7 +115,7 @@ local cross_account_mail = true for name, _ in pairs(DataStore:GetCharacters()) do - if recipient == name then + if strlower(recipient) == strlower(name) then cross_account_mail = false break end