Skip to content

Commit

Permalink
Fix skin not loading on autofetch
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Dec 3, 2024
1 parent c7332d9 commit b161b62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ dependencies {
modImplementation(include('me.lucko:fabric-permissions-api:0.3.1'))

// Carpet
modImplementation("carpet:fabric-carpet:${project.carpet_core_version}")
//modCompileOnly('com.github.samolego.Taterzens:taterzens-fabric:1.11.6')
}
modCompileOnly("carpet:fabric-carpet:${project.carpet_core_version}")
}

processResources {
inputs.property "version", project.version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static void onInit(ServerGamePacketListenerImpl listener, MinecraftServer

// Try to set skin now
if (skinData != null) {
((TailoredPlayer) player).fabrictailor_setSkin(skinData, false);
((TailoredPlayer) player).fabrictailor_setSkin(skinData, true);
}
((TailoredPlayer) player).fabrictailor_resetLastSkinChange();
}
Expand Down

0 comments on commit b161b62

Please sign in to comment.