mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-31 22:30:15 +00:00
SPIGOT-7915: Fix World#getKeepSpawnInMemory() using Spawn Radius rather than Spawn Chunk Radius
This commit is contained in:
parent
ded1836741
commit
f4d957fffd
1 changed files with 1 additions and 1 deletions
|
@ -1343,7 +1343,7 @@ public class CraftWorld extends CraftRegionAccessor implements World {
|
|||
|
||||
@Override
|
||||
public boolean getKeepSpawnInMemory() {
|
||||
return getGameRuleValue(GameRule.SPAWN_RADIUS) > 0;
|
||||
return getGameRuleValue(GameRule.SPAWN_CHUNK_RADIUS) > 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue