Skip to content

Commit

Permalink
bump mod version; fix logger ambiguity
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonic2423 committed Aug 13, 2024
1 parent 6c30aca commit 9aa889b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
}
Expand Down

0 comments on commit 9aa889b

Please sign in to comment.