2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 3 Nov 2016 20:28:12 -0400
|
|
|
|
Subject: [PATCH] Don't load Chunks from Hoppers and other things
|
|
|
|
|
|
|
|
Hoppers call this to I guess "get the primary side" of a double sided chest.
|
|
|
|
|
|
|
|
If the double sided chest crosses chunk lines, it causes the chunk to load.
|
|
|
|
This will end up causing sync chunk loads, which will unload with Chunk GC,
|
|
|
|
only to be reloaded again the next tick.
|
|
|
|
|
|
|
|
This of course is undesirable, so just return the loaded side as "primary"
|
|
|
|
and treat it as a single chest if the other sides are unloaded
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/DoubleBlockCombiner.java b/src/main/java/net/minecraft/world/level/block/DoubleBlockCombiner.java
|
2024-04-12 21:14:06 +02:00
|
|
|
index 963092cd5a4e756ad6a471379a81d8996cc2b091..20c9921339ec6b5127fbadcedc19577f3906074d 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/DoubleBlockCombiner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/DoubleBlockCombiner.java
|
2024-04-12 21:14:06 +02:00
|
|
|
@@ -34,7 +34,12 @@ public class DoubleBlockCombiner {
|
2021-06-13 21:29:58 +02:00
|
|
|
return new DoubleBlockCombiner.NeighborCombineResult.Single<>(blockEntity);
|
2021-06-11 14:02:28 +02:00
|
|
|
} else {
|
2023-12-05 23:32:41 +01:00
|
|
|
BlockPos blockPos = pos.relative(directionMapper.apply(state));
|
2021-06-13 21:29:58 +02:00
|
|
|
- BlockState blockState = world.getBlockState(blockPos);
|
2024-01-21 12:53:04 +01:00
|
|
|
+ // Paper start - Don't load Chunks from Hoppers and other things
|
2021-12-06 00:32:02 +01:00
|
|
|
+ BlockState blockState = world.getBlockStateIfLoaded(blockPos);
|
2021-06-13 21:29:58 +02:00
|
|
|
+ if (blockState == null) {
|
|
|
|
+ return new DoubleBlockCombiner.NeighborCombineResult.Single<>(blockEntity);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
2024-01-21 12:53:04 +01:00
|
|
|
+ // Paper end - Don't load Chunks from Hoppers and other things
|
2021-06-13 21:29:58 +02:00
|
|
|
if (blockState.is(state.getBlock())) {
|
|
|
|
DoubleBlockCombiner.BlockType blockType2 = typeMapper.apply(blockState);
|
2024-04-12 21:14:06 +02:00
|
|
|
if (blockType2 != DoubleBlockCombiner.BlockType.SINGLE
|