We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ad4e4 commit 041f7f9Copy full SHA for 041f7f9
1 file changed
common/src/main/java/com/viaversion/viabackwards/protocol/v26_1to1_21_11/storage/DayTimeStorage.java
@@ -34,7 +34,9 @@ public void setGameTime(final long gameTime) {
34
}
35
36
public long setGameTimeAndUpdateDayTime(final long gameTime) {
37
- this.dayTime += gameTime - this.gameTime;
+ if (advanceTime) {
38
+ this.dayTime += gameTime - this.gameTime;
39
+ }
40
this.gameTime = gameTime;
41
return dayTime;
42
0 commit comments