aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch')
-rw-r--r--patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch b/patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch
new file mode 100644
index 0000000000..f54e630675
--- /dev/null
+++ b/patches/server/0632-add-isDeeplySleeping-to-HumanEntity.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Thu, 8 Apr 2021 17:36:10 -0700
+Subject: [PATCH] add isDeeplySleeping to HumanEntity
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
+index e4759fe6779b2c174388c1b5f56ce13c51d653b6..b39117c4505926da0be9c8248964a233393e8e2d 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
+@@ -121,6 +121,13 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
+ }
+ }
+
++ // Paper start
++ @Override
++ public boolean isDeeplySleeping() {
++ return getHandle().isSleepingLongEnough();
++ }
++ // Paper end
++
+ @Override
+ public int getSleepTicks() {
+ return this.getHandle().sleepCounter;