3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

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

Dieser Commit ist enthalten in:
afforess 2011-04-02 04:04:57 -04:00 committet von Erik Broes
Ursprung 39972530f2
Commit adb13029bc

Datei anzeigen

@ -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() {