aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2024-04-12 12:14:06 -0700
committerGitHub <[email protected]>2024-04-12 12:14:06 -0700
commit526795bacd07c019fe3652c96d74cc9f91ecb1fd (patch)
treed1d57ba4f75f239030713ac504df570c25a244b8 /patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
parent37db2d7e4c10510a39b083600befec5dfc7cfbd4 (diff)
downloadPaper-526795bacd07c019fe3652c96d74cc9f91ecb1fd.tar.gz
Paper-526795bacd07c019fe3652c96d74cc9f91ecb1fd.zip
Update patches to handle vineflower decompiler (#10406)
* Update patches to handle vineflower decompiler * update patches again to handle inlined simple lambdas * update vf again and re-apply/rebuild patches * update patches after removal of verify-merges flag * fix compile issue * remove maven local * fix some issues * address more issues * fix collision patch * use paperweight release * more fixes * update fineflower and fix patches again * add missing comment descriptor --------- Co-authored-by: Jason Penilla <[email protected]>
Diffstat (limited to 'patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch')
-rw-r--r--patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch b/patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
index 983b04c068..82277a287f 100644
--- a/patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
+++ b/patches/server/0308-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
@@ -5,16 +5,16 @@ Subject: [PATCH] Prevent sync chunk loads when villagers try to find beds
diff --git a/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java b/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java
-index 964fc8615d071d33c821f0c54ac1ebd4884df0cd..271e913a87a782dbf12686887f768d899bfb0fbf 100644
+index 6fe337e8d6db168ea181ed2597674f4829b03c47..e552ae6a7db765301a3d280dbf9348d9dc28b9c2 100644
--- a/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java
+++ b/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java
-@@ -43,7 +43,8 @@ public class SleepInBed extends Behavior<LivingEntity> {
+@@ -42,7 +42,8 @@ public class SleepInBed extends Behavior<LivingEntity> {
}
}
- BlockState blockState = world.getBlockState(globalPos.pos());
+ BlockState blockState = world.getBlockStateIfLoaded(globalPos.pos()); // Paper - Prevent sync chunk loads when villagers try to find beds
+ if (blockState == null) { return false; } // Paper - Prevent sync chunk loads when villagers try to find beds
- return globalPos.pos().closerToCenterThan(entity.position(), 2.0D) && blockState.is(BlockTags.BEDS) && !blockState.getValue(BedBlock.OCCUPIED);
+ return globalPos.pos().closerToCenterThan(entity.position(), 2.0) && blockState.is(BlockTags.BEDS) && !blockState.getValue(BedBlock.OCCUPIED);
}
}