Change log, version up, and plugins TOC bumps

This commit is contained in:
Tercio Jose
2023-08-12 14:32:01 -03:00
parent 6bfcc14309
commit 0b32fe3459
15 changed files with 312 additions and 110 deletions
+4 -3
View File
@@ -506,10 +506,11 @@ end
--check if the nickname fit some minimal rules to be presented to other players
local checkValidNickname = function(nickname, playerName)
if (nickname and type(nickname) == "string") then
if (nickname == "") then
nickname = nickname:trim()
if (nickname == "" or nickname:len() < 2) then
return playerName
elseif (nickname:find(" ")) then
end
if (nickname:len() > 20) then
return playerName
end
else