Skip to content

Commit 8e9dc20

Browse files
committed
Remove logging time difference
1 parent 8b0ae73 commit 8e9dc20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Asahi ![Modrinth Downloads](https://img.shields.io/modrinth/dt/zenith?color=00AF5C&label=modrinth&style=flat&logo=modrinth)
1+
# Asahi ![Modrinth Downloads](https://img.shields.io/modrinth/dt/asahi?color=00AF5C&label=modrinth&style=flat&logo=modrinth)
22

33
Client side Minecraft mod that removes daylight cycle jittering caused by server lag!
44

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
88
loader_version=0.14.21
99

1010
# Mod Properties
11-
mod_version = 1.0.1
11+
mod_version = 1.0.2
1212
maven_group = dev.hugeblank
1313
archives_base_name = asahi
1414

src/main/java/dev/hugeblank/asahi/client/mixin/ClientWorldMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private void tickTime() {
8282
@Override
8383
public void zenith$updateTimes(WorldTimeUpdateS2CPacket packet) {
8484
long diff = packet.getTimeOfDay() - properties.getTimeOfDay();
85-
System.out.println(diff);
85+
//System.out.println(diff); // TODO: Debug logging that doesn't show up in prod
8686
if (Math.abs(diff) >= Constants.SKIP_DURATION) {
8787
zenith$setTime(packet.getTime());
8888
zenith$setTimeOfDay(packet.getTimeOfDay());

0 commit comments

Comments
 (0)