diff --git a/gradle.properties b/gradle.properties index 24444ec..992a793 100644 --- a/gradle.properties +++ b/gradle.properties @@ -32,7 +32,7 @@ mod_name=NeoForwarding # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GNU GPLv3 # The mod version. See https://semver.org/ -mod_version=1.0.0 +mod_version=1.1.0 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/com/sonic2423/neoforwarding/mixin/mixins/ServerLoginPacketListenerImplMixin.java b/src/main/java/com/sonic2423/neoforwarding/mixin/mixins/ServerLoginPacketListenerImplMixin.java index 25c8ffe..98f19e3 100644 --- a/src/main/java/com/sonic2423/neoforwarding/mixin/mixins/ServerLoginPacketListenerImplMixin.java +++ b/src/main/java/com/sonic2423/neoforwarding/mixin/mixins/ServerLoginPacketListenerImplMixin.java @@ -2,6 +2,7 @@ import com.mojang.authlib.GameProfile; import com.sonic2423.neoforwarding.Config; +import com.sonic2423.neoforwarding.NeoForwarding; import com.sonic2423.neoforwarding.PlayerDataForwarding; import com.sonic2423.neoforwarding.mixin.ISetAddressInConnection; import net.minecraft.network.Connection; @@ -97,7 +98,7 @@ private void onHandleCustomQueryPacket(ServerboundCustomQueryAnswerPacket packet startClientVerification(PlayerDataForwarding.createProfile(buf)); - LOGGER.info("UUID of player {} is {}", this.authenticatedProfile.getName(), this.authenticatedProfile.getId()); + NeoForwarding.LOGGER.info("UUID of player {} is {}", this.authenticatedProfile.getName(), this.authenticatedProfile.getId()); ci.cancel(); }