Paper/patches/server/0326-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch

21 lines
1.1 KiB
Diff
Raw Normal View History

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
2023-09-22 19:59:56 +02:00
index 964fc8615d071d33c821f0c54ac1ebd4884df0cd..dcfc668503c50927b4a4dbb3988d531215d513f8 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
2022-12-07 20:22:28 +01:00
@@ -43,7 +43,8 @@ public class SleepInBed extends Behavior<LivingEntity> {
2021-06-13 21:29:58 +02:00
}
}
- BlockState blockState = world.getBlockState(globalPos.pos());
+ BlockState blockState = world.getBlockStateIfLoaded(globalPos.pos()); // Paper
2021-06-13 21:29:58 +02:00
+ if (blockState == null) { return false; } // Paper
2022-03-01 06:43:03 +01:00
return globalPos.pos().closerToCenterThan(entity.position(), 2.0D) && blockState.is(BlockTags.BEDS) && !blockState.getValue(BedBlock.OCCUPIED);
2021-06-13 21:29:58 +02:00
}
}