Forces clients to update to the new time immediately when setTime or setFullTime is called.

By: afforess <afforess@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2011-04-02 04:04:57 -04:00
parent 3547e8a410
commit f8292a5eb6

View file

@ -418,6 +418,12 @@ public class CraftWorld implements World {
public void setFullTime(long time) {
world.a(time);
//Forces the client to update to the new time immediately
for (Player p: getPlayers()) {
CraftPlayer cp = (CraftPlayer) p;
cp.getHandle().a.b(new Packet4UpdateTime(time));
}
}
public Environment getEnvironment() {