Fix autosave period

This commit is contained in:
Catfoolyou 2025-05-09 18:51:55 -04:00
parent e328e8535c
commit a237ef36f5
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -111,7 +111,7 @@ public class World implements IBlockAccess {
this.DIST_HASH_MAGIC = 1013904223;
this.editingBlocks = false;
this.lockTimestamp = System.currentTimeMillis();
this.autosavePeriod = 40;
this.autosavePeriod = 4000;
this.playerEntities = new ArrayList();
this.rand = new Random();
this.isNewWorld = false;
@ -145,7 +145,7 @@ public class World implements IBlockAccess {
this.DIST_HASH_MAGIC = 1013904223;
this.editingBlocks = false;
this.lockTimestamp = System.currentTimeMillis();
this.autosavePeriod = 40;
this.autosavePeriod = 4000;
this.playerEntities = new ArrayList();
this.rand = new Random();
this.isNewWorld = false;