24 lines
		
	
	
	
		
			973 B
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			973 B
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
 | 
						|
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
 | 
						|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
 | 
						|
@@ -0,0 +0,0 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
 | 
						|
     }
 | 
						|
     // Paper end
 | 
						|
 
 | 
						|
+    // Paper start
 | 
						|
+    @Override
 | 
						|
+    public boolean isDeeplySleeping() {
 | 
						|
+        return getHandle().isSleepingLongEnough();
 | 
						|
+    }
 | 
						|
+    // Paper end
 | 
						|
+
 | 
						|
     @Override
 | 
						|
     public int getSleepTicks() {
 | 
						|
         return this.getHandle().sleepCounter;
 |