Change Cloud save interval to 10 minutes

This commit is contained in:
SpectralFlame 2023-01-09 12:49:57 -06:00 committed by cyip92
parent bd02e7e394
commit 260f70ea0b
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ export const GameIntervals = (function() {
),
checkCloudSave: interval(() => {
if (player.options.cloudEnabled && Cloud.loggedIn) Cloud.saveCheck();
}, 300000),
}, 600 * 1000),
randomSecretAchievement: interval(() => {
if (Math.random() < 0.00001) SecretAchievement(18).unlock();
}, 1000),

View File

@ -188,7 +188,7 @@ export default {
<span v-else>Not logged in</span>
</h2>
<div v-if="loggedIn">
<span v-if="cloudEnabled">Cloud Saving will occur automatically every 5 minutes.</span>
<span v-if="cloudEnabled">Cloud Saving will occur automatically every 10 minutes.</span>
<span v-else>Cloud Saving has been disabled on this save.</span>
</div>
<div class="l-options-grid">