Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Movecraft/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ hangarPublish {
platforms {
register(io.papermc.hangarpublishplugin.model.Platforms.PAPER) {
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
platformVersions.set(listOf("1.20.6", "1.21.4"))
platformVersions.set(listOf("1.20.6", "1.21.5"))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion v1_21/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ java.toolchain.languageVersion = JavaLanguageVersion.of(21)

dependencies {
api(project(":movecraft-api"))
paperweight.paperDevBundle("1.21.4-R0.1-SNAPSHOT")
paperweight.paperDevBundle("1.21.5-R0.1-SNAPSHOT")
}

description = "Movecraft-v1_21"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class IWorldHandler extends WorldHandler {

public IWorldHandler() {
String version = Bukkit.getServer().getMinecraftVersion();
if (!version.equals("1.21.4"))
if (!version.equals("1.21.5"))
throw new IllegalStateException("Movecraft is not compatible with this version of Minecraft: " + version);
}

Expand Down Expand Up @@ -242,7 +242,7 @@ private void setBlockFast(@NotNull Level world, @NotNull BlockPos position, @Not
LevelChunkSection section = chunk.getSections()[chunkSection];
if (section == null) {
// Put a GLASS block to initialize the section. It will be replaced next with the real block.
chunk.setBlockState(position, Blocks.GLASS.defaultBlockState(), false);
chunk.setBlockState(position, Blocks.GLASS.defaultBlockState(), 0);
section = chunk.getSections()[chunkSection];
}
if (section.getBlockState(position.getX() & 15, position.getY() & 15, position.getZ() & 15).equals(data)) {
Expand Down
Loading