revert unintended changes
This commit is contained in:
parent
e2ea52babb
commit
2bc4fe4215
7 changed files with 81 additions and 299 deletions
|
@ -1,235 +1,40 @@
|
||||||
package com.vladmarica.betterpingdisplay.hud;
|
package com.vladmarica.betterpingdisplay.hud;
|
||||||
|
|
||||||
import com.google.common.collect.ComparisonChain;
|
|
||||||
import com.google.common.collect.Ordering;
|
|
||||||
import com.mojang.authlib.GameProfile;
|
|
||||||
import com.mojang.blaze3d.systems.RenderSystem;
|
import com.mojang.blaze3d.systems.RenderSystem;
|
||||||
import com.vladmarica.betterpingdisplay.Config;
|
|
||||||
import com.vladmarica.betterpingdisplay.hud.CustomPlayerListHud.EntryOrderComparator;
|
|
||||||
import com.vladmarica.betterpingdisplay.BetterPingDisplayMod;
|
import com.vladmarica.betterpingdisplay.BetterPingDisplayMod;
|
||||||
import java.util.Comparator;
|
import com.vladmarica.betterpingdisplay.Config;
|
||||||
import java.util.Iterator;
|
import com.vladmarica.betterpingdisplay.mixin.PlayerListHudInvoker;
|
||||||
import java.util.List;
|
|
||||||
import net.fabricmc.api.EnvType;
|
|
||||||
import net.fabricmc.api.Environment;
|
|
||||||
import net.minecraft.client.MinecraftClient;
|
import net.minecraft.client.MinecraftClient;
|
||||||
import net.minecraft.client.font.TextRenderer;
|
import net.minecraft.client.font.TextRenderer;
|
||||||
import net.minecraft.client.gui.DrawableHelper;
|
|
||||||
import net.minecraft.client.gui.hud.PlayerListHud;
|
import net.minecraft.client.gui.hud.PlayerListHud;
|
||||||
import net.minecraft.client.network.ClientPlayNetworkHandler;
|
|
||||||
import net.minecraft.client.network.PlayerListEntry;
|
import net.minecraft.client.network.PlayerListEntry;
|
||||||
import net.minecraft.client.render.GameRenderer;
|
|
||||||
import net.minecraft.client.render.entity.PlayerModelPart;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
import net.minecraft.entity.player.PlayerEntity;
|
|
||||||
import net.minecraft.scoreboard.Scoreboard;
|
|
||||||
import net.minecraft.scoreboard.ScoreboardCriterion;
|
|
||||||
import net.minecraft.scoreboard.ScoreboardObjective;
|
|
||||||
import net.minecraft.scoreboard.Team;
|
|
||||||
import net.minecraft.text.OrderedText;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.util.Formatting;
|
|
||||||
import net.minecraft.world.GameMode;
|
|
||||||
|
|
||||||
public final class CustomPlayerListHud {
|
public final class CustomPlayerListHud {
|
||||||
|
|
||||||
private static final Ordering<PlayerListEntry> ENTRY_ORDERING = Ordering.from(new EntryOrderComparator());
|
|
||||||
private static final int PING_TEXT_RENDER_OFFSET = -13;
|
private static final int PING_TEXT_RENDER_OFFSET = -13;
|
||||||
private static final int PLAYER_SLOT_EXTRA_WIDTH = 45;
|
|
||||||
private static final int PLAYER_ICON_WIDTH = 9;
|
|
||||||
private static final int PING_BARS_WIDTH = 11;
|
private static final int PING_BARS_WIDTH = 11;
|
||||||
|
private static final Config config = BetterPingDisplayMod.instance().getConfig();
|
||||||
|
|
||||||
public static void render(PlayerListHud hud, MatrixStack stack, int width, Scoreboard scoreboard, ScoreboardObjective obj) {
|
public static void render(MinecraftClient client, PlayerListHud hud, MatrixStack matrixStack, int width, int x, int y, PlayerListEntry player) {
|
||||||
MinecraftClient mc = MinecraftClient.getInstance();
|
TextRenderer textRenderer = client.textRenderer;
|
||||||
TextRenderer textRenderer = mc.textRenderer;
|
|
||||||
Text header = PlayerListHudUtil.getHeader(hud);
|
|
||||||
Text footer = PlayerListHudUtil.getFooter(hud);
|
|
||||||
Config config = BetterPingDisplayMod.instance().getConfig();
|
|
||||||
|
|
||||||
ClientPlayNetworkHandler clientPlayNetworkHandler = mc.player.networkHandler;
|
|
||||||
List<PlayerListEntry> playerList = ENTRY_ORDERING.sortedCopy(clientPlayNetworkHandler.getPlayerList());
|
|
||||||
int i = 0;
|
|
||||||
int j = 0;
|
|
||||||
Iterator playerListIterator = playerList.iterator();
|
|
||||||
|
|
||||||
int n;
|
|
||||||
while(playerListIterator.hasNext()) {
|
|
||||||
PlayerListEntry playerListEntry = (PlayerListEntry)playerListIterator.next();
|
|
||||||
n = mc.textRenderer.getWidth(hud.getPlayerName(playerListEntry));
|
|
||||||
i = Math.max(i, n);
|
|
||||||
if (obj != null && obj.getRenderType() != ScoreboardCriterion.RenderType.HEARTS) {
|
|
||||||
n = textRenderer.getWidth(" " + scoreboard.getPlayerScore(playerListEntry.getProfile().getName(), obj).getScore());
|
|
||||||
j = Math.max(j, n);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
playerList = playerList.subList(0, Math.min(playerList.size(), 80));
|
|
||||||
int l = playerList.size();
|
|
||||||
int m = l;
|
|
||||||
|
|
||||||
for(n = 1; m > 20; m = (l + n - 1) / n) {
|
|
||||||
++n;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean displayPlayerIcons = mc.isInSingleplayer() || mc.getNetworkHandler().getConnection().isEncrypted();
|
|
||||||
int q;
|
|
||||||
if (obj != null) {
|
|
||||||
if (obj.getRenderType() == ScoreboardCriterion.RenderType.HEARTS) {
|
|
||||||
q = 90;
|
|
||||||
} else {
|
|
||||||
q = j;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
q = 0;
|
|
||||||
}
|
|
||||||
int r = Math.min(n * ((displayPlayerIcons ? PLAYER_ICON_WIDTH : 0) + i + q + 13 + PLAYER_SLOT_EXTRA_WIDTH), width - 50) / n;
|
|
||||||
int s = width / 2 - (r * n + (n - 1) * 5) / 2;
|
|
||||||
int t = 10;
|
|
||||||
int u = r * n + (n - 1) * 5;
|
|
||||||
List<OrderedText> headerLines = null;
|
|
||||||
if (header != null) {
|
|
||||||
headerLines = mc.textRenderer.wrapLines(header, width - 50);
|
|
||||||
|
|
||||||
for (OrderedText headerLine : headerLines) {
|
|
||||||
u = Math.max(u, mc.textRenderer.getWidth(headerLine));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
List<OrderedText> footerLines = null;
|
|
||||||
if (footer != null) {
|
|
||||||
footerLines = mc.textRenderer.wrapLines(footer, width - 50);
|
|
||||||
|
|
||||||
for (OrderedText footerLine : footerLines) {
|
|
||||||
u = Math.max(u, mc.textRenderer.getWidth(footerLine));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int var10000;
|
|
||||||
int var10001;
|
|
||||||
int var10002;
|
|
||||||
int var10004;
|
|
||||||
int y;
|
|
||||||
if (headerLines != null) {
|
|
||||||
var10000 = width / 2 - u / 2 - 1;
|
|
||||||
var10001 = t - 1;
|
|
||||||
var10002 = width / 2 + u / 2 + 1;
|
|
||||||
var10004 = headerLines.size();
|
|
||||||
DrawableHelper.fill(stack, var10000, var10001, var10002, t + var10004 * 9, Integer.MIN_VALUE);
|
|
||||||
|
|
||||||
for (OrderedText headerLine : headerLines) {
|
|
||||||
y = mc.textRenderer.getWidth(headerLine);
|
|
||||||
mc.textRenderer.drawWithShadow(stack, headerLine, (float)(width / 2 - y / 2), (float)t, -1);
|
|
||||||
t += 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
++t;
|
|
||||||
}
|
|
||||||
|
|
||||||
DrawableHelper.fill(stack, width / 2 - u / 2 - 1, t - 1, width / 2 + u / 2 + 1, t + m * 9, Integer.MIN_VALUE);
|
|
||||||
int w = mc.options.getTextBackgroundColor(553648127);
|
|
||||||
|
|
||||||
int ai;
|
|
||||||
for(int x = 0; x < l; ++x) {
|
|
||||||
y = x / m;
|
|
||||||
ai = x % m;
|
|
||||||
int aa = s + y * r + y * 5;
|
|
||||||
int ab = t + ai * 9;
|
|
||||||
DrawableHelper.fill(stack, aa, ab, aa + r, ab + 8, w);
|
|
||||||
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
|
|
||||||
RenderSystem.setShader(GameRenderer::getPositionColorShader);
|
|
||||||
RenderSystem.enableBlend();
|
|
||||||
RenderSystem.defaultBlendFunc();
|
|
||||||
if (x < playerList.size()) {
|
|
||||||
PlayerListEntry player = playerList.get(x);
|
|
||||||
GameProfile gameProfile = player.getProfile();
|
|
||||||
int ah;
|
|
||||||
if (displayPlayerIcons) {
|
|
||||||
PlayerEntity playerEntity = mc.world.getPlayerByUuid(gameProfile.getId());
|
|
||||||
boolean bl2 = playerEntity != null && playerEntity.isPartVisible(PlayerModelPart.CAPE) && ("Dinnerbone".equals(gameProfile.getName()) || "Grumm".equals(gameProfile.getName()));
|
|
||||||
RenderSystem.setShaderTexture(0, player.getSkinTexture());
|
|
||||||
ah = 8 + (bl2 ? 8 : 0);
|
|
||||||
int ad = 8 * (bl2 ? -1 : 1);
|
|
||||||
DrawableHelper.drawTexture(stack, aa, ab, 8, 8, 8.0F, (float)ah, 8, ad, 64, 64);
|
|
||||||
if (playerEntity != null && playerEntity.isPartVisible(PlayerModelPart.HAT)) {
|
|
||||||
int ae = 8 + (bl2 ? 8 : 0);
|
|
||||||
int af = 8 * (bl2 ? -1 : 1);
|
|
||||||
DrawableHelper.drawTexture(stack, aa, ab, 8, 8, 40.0F, (float)ae, 8, af, 64, 64);
|
|
||||||
}
|
|
||||||
|
|
||||||
aa += 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
Text playerName = hud.getPlayerName(player);
|
|
||||||
if (player.getGameMode() == GameMode.SPECTATOR) {
|
|
||||||
mc.textRenderer.drawWithShadow(stack, playerName, (float)aa, (float)ab, -1862270977);
|
|
||||||
} else {
|
|
||||||
mc.textRenderer.drawWithShadow(stack, playerName, (float)aa, (float)ab, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (obj != null && player.getGameMode() != GameMode.SPECTATOR) {
|
|
||||||
int ag = aa + i + 1;
|
|
||||||
ah = ag + q;
|
|
||||||
if (ah - ag > 5) {
|
|
||||||
PlayerListHudUtil.renderScoreboardObjective(hud, stack, obj, ab, gameProfile.getName(), ag, ah, player);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Here is the magic, rendering the ping text
|
|
||||||
String pingString = String.format(config.getTextFormatString(), player.getLatency());
|
String pingString = String.format(config.getTextFormatString(), player.getLatency());
|
||||||
int pingStringWidth = textRenderer.getWidth(pingString);
|
int pingStringWidth = textRenderer.getWidth(pingString);
|
||||||
int textX = r + aa - pingStringWidth + PING_TEXT_RENDER_OFFSET;
|
|
||||||
|
|
||||||
if (displayPlayerIcons) {
|
int textX = width + x - pingStringWidth + PING_TEXT_RENDER_OFFSET;
|
||||||
textX -= PLAYER_ICON_WIDTH;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!config.shouldRenderPingBars()) {
|
if (!config.shouldRenderPingBars()) {
|
||||||
textX += PING_BARS_WIDTH;
|
textX += PING_BARS_WIDTH;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pingTextColor = config.shouldAutoColorPingText()
|
int pingTextColor = config.shouldAutoColorPingText() ? PingColors.getColor(player.getLatency()) : config.getTextColor();
|
||||||
? PingColors.getColor(player.getLatency())
|
textRenderer.drawWithShadow(matrixStack, pingString, (float) textX, (float) y, pingTextColor);
|
||||||
: config.getTextColor();
|
|
||||||
|
|
||||||
textRenderer.drawWithShadow(stack, pingString, (float) textX, (float) ab, pingTextColor);
|
|
||||||
|
|
||||||
if (config.shouldRenderPingBars()) {
|
if (config.shouldRenderPingBars()) {
|
||||||
PlayerListHudUtil.renderLatencyIcon(
|
((PlayerListHudInvoker) hud).renderLatencyText(matrixStack, width, x, y, player);
|
||||||
hud, stack, r, aa - (displayPlayerIcons ? PLAYER_ICON_WIDTH : 0), ab, player);
|
|
||||||
} else {
|
} else {
|
||||||
// If we don't render ping bars, we need to reset the render system color so the rest
|
// If we don't render ping bars, we need to reset the render system color so the rest
|
||||||
// of the player list renders properly
|
// of the player list renders properly
|
||||||
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
|
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (footerLines != null) {
|
|
||||||
t += m * 9 + 1;
|
|
||||||
var10000 = width / 2 - u / 2 - 1;
|
|
||||||
var10001 = t - 1;
|
|
||||||
var10002 = width / 2 + u / 2 + 1;
|
|
||||||
var10004 = footerLines.size();
|
|
||||||
DrawableHelper.fill(stack, var10000, var10001, var10002, t + var10004 * 9, Integer.MIN_VALUE);
|
|
||||||
|
|
||||||
for (OrderedText footerLine : footerLines) {
|
|
||||||
ai = textRenderer.getWidth(footerLine);
|
|
||||||
textRenderer.drawWithShadow(stack, footerLine, (float)(width / 2 - ai / 2), (float)t, -1);
|
|
||||||
t += 9;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Environment(EnvType.CLIENT)
|
|
||||||
static class EntryOrderComparator implements Comparator<PlayerListEntry> {
|
|
||||||
public int compare(PlayerListEntry p1, PlayerListEntry p2) {
|
|
||||||
Team team = p1.getScoreboardTeam();
|
|
||||||
Team team2 = p2.getScoreboardTeam();
|
|
||||||
return ComparisonChain.start()
|
|
||||||
.compareTrueFirst(p1.getGameMode() != GameMode.SPECTATOR, p2.getGameMode() != GameMode.SPECTATOR)
|
|
||||||
.compare(team != null ? team.getName() : "", team2 != null ? team2.getName() : "")
|
|
||||||
.compare(p1.getProfile().getName(), p2.getProfile().getName(), String::compareToIgnoreCase)
|
|
||||||
.result();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -1,28 +0,0 @@
|
||||||
package com.vladmarica.betterpingdisplay.hud;
|
|
||||||
|
|
||||||
import com.vladmarica.betterpingdisplay.mixin.PlayerListHudAccessor;
|
|
||||||
import net.minecraft.client.gui.hud.PlayerListHud;
|
|
||||||
import net.minecraft.client.network.PlayerListEntry;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.scoreboard.ScoreboardObjective;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
|
|
||||||
public class PlayerListHudUtil {
|
|
||||||
/** Calls {@link net.minecraft.client.gui.hud.PlayerListHud#renderLatencyIcon}. */
|
|
||||||
static void renderLatencyIcon(PlayerListHud hud, MatrixStack stack, int x, int offsetX, int y, PlayerListEntry player) {
|
|
||||||
((PlayerListHudAccessor) hud).invokeRenderLatencyIcon(stack, x, offsetX, y, player);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Calls {@link net.minecraft.client.gui.hud.PlayerListHud#renderScoreboardObjective} */
|
|
||||||
static void renderScoreboardObjective(PlayerListHud hud, MatrixStack stack, ScoreboardObjective obj, int i, String str, int j, int k, PlayerListEntry player) {
|
|
||||||
((PlayerListHudAccessor) hud).invokeRenderScoreboardObjective(obj, i, str, j, k, player, stack);
|
|
||||||
}
|
|
||||||
|
|
||||||
static Text getHeader(PlayerListHud hud) {
|
|
||||||
return ((PlayerListHudAccessor) hud).getHeader();
|
|
||||||
}
|
|
||||||
|
|
||||||
static Text getFooter(PlayerListHud hud) {
|
|
||||||
return ((PlayerListHudAccessor) hud).getFooter();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
package com.vladmarica.betterpingdisplay.mixin;
|
|
||||||
|
|
||||||
import com.vladmarica.betterpingdisplay.hud.CustomPlayerListHud;
|
|
||||||
import net.minecraft.client.gui.hud.InGameHud;
|
|
||||||
import net.minecraft.client.gui.hud.PlayerListHud;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.scoreboard.Scoreboard;
|
|
||||||
import net.minecraft.scoreboard.ScoreboardObjective;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
|
||||||
|
|
||||||
@Mixin(InGameHud.class)
|
|
||||||
abstract class InGameHudMixin {
|
|
||||||
@Redirect(method = "render",
|
|
||||||
at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/hud/PlayerListHud;render(Lnet/minecraft/client/util/math/MatrixStack;ILnet/minecraft/scoreboard/Scoreboard;Lnet/minecraft/scoreboard/ScoreboardObjective;)V"))
|
|
||||||
private void render(PlayerListHud hud, MatrixStack stack, int width, Scoreboard scoreboard, ScoreboardObjective objective) {
|
|
||||||
CustomPlayerListHud.render(hud, stack, width, scoreboard, objective);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
package com.vladmarica.betterpingdisplay.mixin;
|
|
||||||
|
|
||||||
import net.minecraft.client.gui.hud.PlayerListHud;
|
|
||||||
import net.minecraft.client.network.PlayerListEntry;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.scoreboard.ScoreboardObjective;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
|
||||||
import org.spongepowered.asm.mixin.gen.Accessor;
|
|
||||||
import org.spongepowered.asm.mixin.gen.Invoker;
|
|
||||||
|
|
||||||
@Mixin(PlayerListHud.class)
|
|
||||||
public interface PlayerListHudAccessor {
|
|
||||||
@Invoker
|
|
||||||
void invokeRenderLatencyIcon(MatrixStack stack, int x, int offsetX, int y, PlayerListEntry player);
|
|
||||||
|
|
||||||
@Invoker
|
|
||||||
void invokeRenderScoreboardObjective(ScoreboardObjective obj, int i, String str, int j, int k, PlayerListEntry player, MatrixStack stack);
|
|
||||||
|
|
||||||
@Accessor("header")
|
|
||||||
Text getHeader();
|
|
||||||
|
|
||||||
@Accessor("footer")
|
|
||||||
Text getFooter();
|
|
||||||
}
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.vladmarica.betterpingdisplay.mixin;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.hud.PlayerListHud;
|
||||||
|
import net.minecraft.client.network.PlayerListEntry;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
||||||
|
|
||||||
|
@Mixin(PlayerListHud.class)
|
||||||
|
public interface PlayerListHudInvoker {
|
||||||
|
@Invoker("renderLatencyIcon")
|
||||||
|
void renderLatencyText(MatrixStack matrices, int width, int x, int y, PlayerListEntry entry);
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
package com.vladmarica.betterpingdisplay.mixin;
|
||||||
|
|
||||||
|
import com.vladmarica.betterpingdisplay.hud.CustomPlayerListHud;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.gui.hud.PlayerListHud;
|
||||||
|
import net.minecraft.client.network.PlayerListEntry;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.Unique;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Constant;
|
||||||
|
import org.spongepowered.asm.mixin.injection.ModifyConstant;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
|
@Mixin(PlayerListHud.class)
|
||||||
|
public abstract class PlayerListHudMixin {
|
||||||
|
@Unique
|
||||||
|
@Final
|
||||||
|
private static final int PLAYER_SLOT_EXTRA_WIDTH = 45;
|
||||||
|
|
||||||
|
@Shadow
|
||||||
|
@Final
|
||||||
|
private MinecraftClient client;
|
||||||
|
|
||||||
|
@ModifyConstant(method = "render", constant = @Constant(intValue = 13))
|
||||||
|
private int on13(int original) {
|
||||||
|
return original + PLAYER_SLOT_EXTRA_WIDTH;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Redirect(method = "render", at = @At(value = "INVOKE", target = "net/minecraft/client/gui/hud/PlayerListHud.renderLatencyIcon(Lnet/minecraft/client/util/math/MatrixStack;IIILnet/minecraft/client/network/PlayerListEntry;)V"))
|
||||||
|
private void redirectLatencyDrawCall(PlayerListHud instance, MatrixStack matrices, int width, int x, int y, @NotNull PlayerListEntry entry) {
|
||||||
|
CustomPlayerListHud.render(this.client, instance, matrices, width, x, y, entry);
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,8 +6,8 @@
|
||||||
"mixins": [
|
"mixins": [
|
||||||
],
|
],
|
||||||
"client": [
|
"client": [
|
||||||
"InGameHudMixin",
|
"PlayerListHudInvoker",
|
||||||
"PlayerListHudAccessor"
|
"PlayerListHudMixin"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue