Disable random tp pre-cache by default (#3496)

This commit is contained in:
pop4959 2020-07-11 12:35:19 -07:00 committed by GitHub
parent dba35f043d
commit 41ae12ed3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class RandomTeleport implements IConf {
}
public boolean getPreCache() {
return config.getBoolean("pre-cache", true);
return config.getBoolean("pre-cache", false);
}
public Queue<Location> getCachedLocations() {