diff options
-rw-r--r-- | game/core.rpy | 2 | ||||
-rw-r--r-- | game/vault.rpy | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/game/core.rpy b/game/core.rpy index 6c655f4..43dfc0a 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -154,7 +154,7 @@ init -3 python: ############################################################################# # ["themanaworld.org", "germantmw.de", "moubootaurlegends.org"] - if config.developer: + if config.developer and False: VAULT_HOST = "https://localhost:13370" VAULT_CERT = "http://localhost/launcher/cert.pem" else: diff --git a/game/vault.rpy b/game/vault.rpy index e0ed4bd..17678ee 100644 --- a/game/vault.rpy +++ b/game/vault.rpy @@ -98,7 +98,7 @@ screen register_vault(): $ input=Input( value=UEditorInputValue("mail", "a@a.com", "str"), copypaste=True, - allow="qwertyuiopasdfghjklçzxcvbnm QWERTYUIOPASDFGHJKLÇZXCVBNM1234567890-+=!(),.:;@", + allow="qwertyuiopasdfghjklçzxcvbnm QWERTYUIOPASDFGHJKLÇZXCVBNM1234567890-+=!(),.:;@_", length=52) button: #key_events True @@ -113,7 +113,7 @@ screen register_vault(): $ input=Input( value=UEditorInputValue("pasd", "***", "str"), copypaste=True, - allow="qwertyuiopasdfghjklçzxcvbnm QWERTYUIOPASDFGHJKLÇZXCVBNM1234567890-+=!(),.:;@*^", + allow="qwertyuiopasdfghjklçzxcvbnm QWERTYUIOPASDFGHJKLÇZXCVBNM1234567890-+=!(),.:;@*^_", length=52, mask="*") button: |