2021-06-13 21:29:58 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Callahan <mr.callahhh@gmail.com>
|
|
|
|
Date: Mon, 13 Jan 2020 23:47:28 -0600
|
|
|
|
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
|
2024-04-12 21:14:06 +02:00
|
|
|
index 6fe337e8d6db168ea181ed2597674f4829b03c47..e552ae6a7db765301a3d280dbf9348d9dc28b9c2 100644
|
2021-06-13 21:29:58 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/behavior/SleepInBed.java
|
2024-04-12 21:14:06 +02:00
|
|
|
@@ -42,7 +42,8 @@ public class SleepInBed extends Behavior<LivingEntity> {
|
2021-06-13 21:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- BlockState blockState = world.getBlockState(globalPos.pos());
|
2024-01-21 12:53:04 +01:00
|
|
|
+ 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
|
2024-04-12 21:14:06 +02:00
|
|
|
return globalPos.pos().closerToCenterThan(entity.position(), 2.0) && blockState.is(BlockTags.BEDS) && !blockState.getValue(BedBlock.OCCUPIED);
|
2021-06-13 21:29:58 +02:00
|
|
|
}
|
|
|
|
}
|