From 6f70d1d8b48d5ef886d56897d792bfcd91afc007 Mon Sep 17 00:00:00 2001 From: Fruitloopins <49851457+Fruitloopins@users.noreply.github.com> Date: Sat, 18 Nov 2023 08:36:18 +1100 Subject: [PATCH] 1.20.2 --- gradle.properties | 8 ++++---- .../fwloopins/tabby/client/mixin/PlayerListHudMixin.java | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index 311160f..54002b0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,9 +4,9 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop - minecraft_version=1.20.1 - yarn_mappings=1.20.1+build.9 - loader_version=0.14.21 + minecraft_version=1.20.2 + yarn_mappings=1.20.2+build.4 + loader_version=0.14.24 # Mod Properties mod_version = 1.6.0 @@ -14,4 +14,4 @@ org.gradle.parallel=true archives_base_name = tabby-1.20.1 # Dependencies - fabric_version=0.84.0+1.20.1 + fabric_version=0.90.7+1.20.2 diff --git a/src/main/java/com/fwloopins/tabby/client/mixin/PlayerListHudMixin.java b/src/main/java/com/fwloopins/tabby/client/mixin/PlayerListHudMixin.java index 4776453..d9bdb76 100644 --- a/src/main/java/com/fwloopins/tabby/client/mixin/PlayerListHudMixin.java +++ b/src/main/java/com/fwloopins/tabby/client/mixin/PlayerListHudMixin.java @@ -28,7 +28,7 @@ import java.util.List; @Mixin(PlayerListHud.class) -public abstract class PlayerListHudMixin { +public class PlayerListHudMixin { @Shadow @Final private MinecraftClient client; @Unique final List colours = new ArrayList<>(Arrays.asList("DARK_RED", "RED", "GOLD", "YELLOW", "DARK_GREEN", "GREEN", "AQUA", "DARK_AQUA", "DARK_BLUE", "BLUE", "LIGHT_PURPLE", "DARK_PURPLE", "WHITE", "GRAY", "DARK_GRAY", "BLACK")); @Shadow @Nullable private Text footer;