mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-30 21:17:53 +01:00
Merge pull request #383 from MrGazdag/patch-8
Set time to negative when timeRate is 0
This commit is contained in:
commit
ec6bcf2d01
@ -405,7 +405,7 @@ public abstract class Instance implements BlockGetter, BlockSetter, Tickable, Ta
|
||||
* @return the {@link TimeUpdatePacket} with this instance data
|
||||
*/
|
||||
private @NotNull TimeUpdatePacket createTimePacket() {
|
||||
return new TimeUpdatePacket(worldAge, time);
|
||||
return new TimeUpdatePacket(worldAge, timeRate == 0 ? -Math.abs(time) : time);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -791,4 +791,4 @@ public abstract class Instance implements BlockGetter, BlockSetter, Tickable, Ta
|
||||
public @NotNull Pointers pointers() {
|
||||
return this.pointers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user