SPIGOT-1168: Fix setSleepingIgnored not working on spectators.
By: md_5 <git@md-5.net>
This commit is contained in:
parent
921337db16
commit
1843b52039
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@
|
||||||
+ if (entityhuman.isDeeplySleeping()) {
|
+ if (entityhuman.isDeeplySleeping()) {
|
||||||
+ foundActualSleepers = true;
|
+ foundActualSleepers = true;
|
||||||
+ }
|
+ }
|
||||||
+ } while (!entityhuman.isSpectator() && (entityhuman.isDeeplySleeping() || entityhuman.fauxSleeping));
|
+ } while (!entityhuman.isSpectator() || entityhuman.isDeeplySleeping() || entityhuman.fauxSleeping);
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue