SPIGOT-1168: Fix setSleepingIgnored not working on spectators.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2015-09-06 15:05:56 +10:00
parent 921337db16
commit 1843b52039

View file

@ -254,7 +254,7 @@
+ if (entityhuman.isDeeplySleeping()) {
+ foundActualSleepers = true;
+ }
+ } while (!entityhuman.isSpectator() && (entityhuman.isDeeplySleeping() || entityhuman.fauxSleeping));
+ } while (!entityhuman.isSpectator() || entityhuman.isDeeplySleeping() || entityhuman.fauxSleeping);
+ // CraftBukkit end
return false;