Merge pull request #64 from 39bit/master

Unicode support for length checking in /nick
This commit is contained in:
Drew
2016-05-29 20:59:23 -04:00
2 changed files with 13 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function nick:action(msg)
else
output = target.name .. ' currently has no nickname.'
end
elseif string.len(input) > 32 then
elseif utilities.utf8_len(input) > 32 then
output = 'The character limit for nicknames is 32.'
elseif input == '--' or input == utilities.char.em_dash then
self.database.users[target.id_str].nickname = nil