Fix hiding of player nametags on 1.21.9+

This commit is contained in:
Jonas Herzig
2025-12-16 15:26:44 +01:00
parent dad0ac18a3
commit a5dec5db25
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.replaymod.render.mixin;
import net.minecraft.client.render.entity.PlayerEntityRenderer;
import org.spongepowered.asm.mixin.Mixin;
@Mixin(PlayerEntityRenderer.class)
public abstract class Mixin_HideNameTags_PlayerEntity {
// 1.21.9 and above
}