Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
4104545b11
"It was from a different time before books were as jank as they are now. As time has gone on they've only proven to be worse and worse."
34 Zeilen
2.0 KiB
Diff
34 Zeilen
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Sat, 10 Mar 2018 16:33:15 -0500
|
|
Subject: [PATCH] Prevent Frosted Ice from loading/holding chunks
|
|
|
|
1.17: Shouldn't be needed as blocks no longer tick without at least 1 radius chunk loaded.
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/FrostedIceBlock.java b/src/main/java/net/minecraft/world/level/block/FrostedIceBlock.java
|
|
index 54eb7ba0265bb155dd1c753661242fa9d299ff80..5b5d606a794c885267b6f5e2bbfe9b0a318ad767 100644
|
|
--- a/src/main/java/net/minecraft/world/level/block/FrostedIceBlock.java
|
|
+++ b/src/main/java/net/minecraft/world/level/block/FrostedIceBlock.java
|
|
@@ -38,7 +38,8 @@ public class FrostedIceBlock extends IceBlock {
|
|
|
|
for(Direction direction : Direction.values()) {
|
|
mutableBlockPos.setWithOffset(pos, direction);
|
|
- BlockState blockState = world.getBlockState(mutableBlockPos);
|
|
+ BlockState blockState = world.getTypeIfLoaded(mutableBlockPos); // Paper
|
|
+ if (blockState == null) { continue; } // Paper
|
|
if (blockState.is(this) && !this.slightlyMelt(blockState, world, mutableBlockPos)) {
|
|
world.getBlockTicks().scheduleTick(mutableBlockPos, this, Mth.nextInt(random, world.paperConfig.frostedIceDelayMin, world.paperConfig.frostedIceDelayMax)); // Paper - use configurable min/max delay
|
|
}
|
|
@@ -75,7 +76,10 @@ public class FrostedIceBlock extends IceBlock {
|
|
|
|
for(Direction direction : Direction.values()) {
|
|
mutableBlockPos.setWithOffset(pos, direction);
|
|
- if (world.getBlockState(mutableBlockPos).is(this)) {
|
|
+ // Paper start
|
|
+ BlockState blockState = world.getTypeIfLoaded(mutableBlockPos);
|
|
+ if (blockState != null && blockState.is(this)) {
|
|
+ // Paper end
|
|
++i;
|
|
if (i >= maxNeighbors) {
|
|
return false;
|