Skip to content

Commit

Permalink
I'll add this feature later lmao
Browse files Browse the repository at this point in the history
  • Loading branch information
LucunJi committed Jul 3, 2024
1 parent e8edce2 commit b74f273
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;

@SuppressWarnings("UnresolvedMixinReference")
@Restriction(require = @Condition(value = ModIds.extra_player_renderer, versionPredicates = ">=2.0.0"))
@Restriction(require = @Condition(value = ModIds.extra_player_renderer, versionPredicates = "^2.0.0"))
@Pseudo
@Mixin(targets = "github.io.lucunji.explayerenderer.client.render.PlayerHUDRenderer")
public abstract class PlayerHUDRenderer_v2Mixin
{
@Inject(method = "doRender", at = @At("HEAD"), remap = false, cancellable = true)
@Inject(method = "doRender", at = @At("HEAD"), remap = false, cancellable = true, require = 0)
private void eprHideOnDebugHud(CallbackInfo ci)
{
EprHideOnDebugHudImpl.applyHide(ci);
Expand Down

0 comments on commit b74f273

Please sign in to comment.