diff options
-rw-r--r-- | game/vault.rpy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/vault.rpy b/game/vault.rpy index be6fe55..e0ed4bd 100644 --- a/game/vault.rpy +++ b/game/vault.rpy @@ -108,6 +108,8 @@ screen register_vault(): hbox: spacing 10 label _("Password: ") + # For some reason, we don't accept all ascii special codes + # WARNING: Non-ascii will break the hashing. $ input=Input( value=UEditorInputValue("pasd", "***", "str"), copypaste=True, |