You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can create character with too many spaces between the letters ,before you create it looks ok on the page ,but in database and ingame you can see that all the spaces are there.
The text was updated successfully, but these errors were encountered:
I solved this problem by adding if(preg_match("/ {2,}/", $_POST['name'])) { $errors[] = 'Invalid character name format. Use only A-Z and no double spaces.'; } in createcharacter.php, but i don't know if this can cause some issue,or if is the right solution.
I can create character with too many spaces between the letters ,before you create it looks ok on the page ,but in database and ingame you can see that all the spaces are there.
The text was updated successfully, but these errors were encountered: