Skip to content

Commit 3fa8dae

Browse files
committed
build: 1.21.9-pre2
1 parent 59f8d9f commit 3fa8dae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ org.gradle.warning.mode=all
55
#org.gradle.configuration-cache=true
66
# Fabric Properties
77
# check these on https://fabricmc.net/versions.html
8-
minecraft_version=1.21.9-pre1
9-
yarn_mappings=1.21.9-pre1+build.2
8+
minecraft_version=1.21.9-pre2
9+
yarn_mappings=1.21.9-pre2+build.2
1010
loader_version=0.17.2
1111
fabric_version=0.133.7+1.21.9
1212
# Mod Properties

tests/test-mod/src/main/java/com/ishland/c2me/tests/testmod/PreGenTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class PreGenTask {
7171
public static CompletableFuture<Void> runPreGen(ServerWorld world, Consumer<ChunkGeneratedEventInfo> eventListener) {
7272
Preconditions.checkNotNull(eventListener);
7373
System.err.printf("Starting pre-generation in %s;%s\n", world.toString(), world.getRegistryKey().getValue().toString());
74-
final BlockPos spawnPos = world.method_74854().method_74897();
74+
final BlockPos spawnPos = world.getSpawnPoint().getPos();
7575
final Set<ChunkPos> chunksHashed = Sets.newConcurrentHashSet();
7676
final List<ChunkPos> chunks = Collections.synchronizedList(new ArrayList<>());
7777
chunks.addAll(createPreGenChunks33(new ChunkPos(spawnPos), chunksHashed::add));

0 commit comments

Comments
 (0)