diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-09 21:51:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-09 21:51:06 -0300 |
commit | c4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a (patch) | |
tree | a2b469ae3469223a5317a73327a1da965981f1d3 | |
parent | 757a349f9bfe304a2fe95961afbfd9e11c8fb3e7 (diff) | |
download | renpy-c4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a.tar.gz renpy-c4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a.tar.bz2 renpy-c4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a.tar.xz renpy-c4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a.zip |
There won't be music, I guess =)
-rw-r--r-- | game/options.rpy | 2 | ||||
-rw-r--r-- | game/update.rpy | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/game/options.rpy b/game/options.rpy index f8f879d..3038eb3 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -59,7 +59,7 @@ define config.rollback_enabled = False ## default. Setting one of these to False will hide the appropriate mixer. define config.has_sound = True -define config.has_music = True +define config.has_music = False define config.has_voice = False diff --git a/game/update.rpy b/game/update.rpy index 0e4b35b..a2f1aa4 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -361,7 +361,7 @@ label register: $ status_update(pc=95) $ data = {"mail": email, "pass": password, - "2FAC": code2FA + "2FAC": code2FA[:6] } $ r = vault.post(VAULT_HOST+"/user_auth", json=data) |