Skip to content

Commit

Permalink
Fix #5 with fix shown there.
Browse files Browse the repository at this point in the history
  • Loading branch information
polarbub committed Jan 9, 2022
1 parent 0d6fda1 commit 030a07a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ yarn_mappings=1.17+build.1
loader_version=0.11.3

# Mod Properties
mod_version = 1.1.2
mod_version = 1.1.3
maven_group = protosky
archives_base_name = protosky
2 changes: 1 addition & 1 deletion src/main/java/protosky/gen/WorldGenUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void genSpawnPlatform(Chunk chunk, ServerWorld world) {
if (s == null) return;

ChunkPos chunkPos = chunk.getPos();
BlockPos blockPos = new BlockPos(chunkPos.x * 8, 64, chunkPos.z * 8);
BlockPos blockPos = new BlockPos(chunkPos.x * 16, 64, chunkPos.z * 16);

StructurePlacementData structurePlacementData = new StructurePlacementData().setUpdateNeighbors(true);
Random random = new Random();
Expand Down

0 comments on commit 030a07a

Please sign in to comment.