summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-09 21:51:06 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-09 21:51:06 -0300
commitc4eeb4c2af5564eb5b40a9c97e2f5c2833b91d6a (patch)
treea2b469ae3469223a5317a73327a1da965981f1d3
parent757a349f9bfe304a2fe95961afbfd9e11c8fb3e7 (diff)
downloadrenpy-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.rpy2
-rw-r--r--game/update.rpy2
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)