Skip to content

korean account and character name #3283

Discussion options

You must be logged in to vote

So to make sure I understand what's happening:

  • You create an Account with a Korean name (using Hangul letters I presume)
  • When logging in under MULTISESSION_MODE=0, the Character name becomes XXX.

What you need to do is override the mygame/typeclasses/characters.py Character class e.g. like this:

# in typeclasses/characters.py 

# ... 

class Character(ObjectParent, DefaultCharacter): 

    # ... 

    @classmethod
    def normalize_name(cls, name): 
        return name 

This is because by default, the normalize_name method is "latinifiying" the character name - this is done for security reasons, to avoid people putting Unicode characters in there that make it look like another name. Non…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@aa1234saf
Comment options

Answer selected by Griatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants