Skip to content

Commit

Permalink
update loadRegionRadius
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Dec 17, 2024
1 parent 0834adb commit 7d11645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/hsgamer/morefoworld/WorldUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public static FeedbackWorld addWorld(WorldCreator creator) {

console.addLevel(internal);

int loadRegionRadius = ((32) >> 4);
int loadRegionRadius = 1024 >> 4;
internal.randomSpawnSelection = new ChunkPos(internal.getChunkSource().randomState().sampler().findSpawnPosition());
for (int currX = -loadRegionRadius; currX <= loadRegionRadius; ++currX) {
for (int currZ = -loadRegionRadius; currZ <= loadRegionRadius; ++currZ) {
Expand Down

0 comments on commit 7d11645

Please sign in to comment.