A mod that adds your armor to the hud modrinth.com/mod/simple-armor-hud
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: migrated from Text to Component for new mappings

legoraft 169a7be8 3bb8b864

+3 -3
+3 -3
src/client/java/com/armorhud/config/config.java
··· 1 1 package com.armorhud.config; 2 2 3 3 import net.fabricmc.loader.api.FabricLoader; 4 - import net.minecraft.text.Text; 4 + import net.minecraft.network.chat.Component; 5 5 import org.apache.logging.log4j.LogManager; 6 6 7 7 import java.io.IOException; ··· 27 27 HOTBAR_LEFT, 28 28 HOTBAR_RIGHT; 29 29 30 - public Text displayName() { 31 - return Text.translatable("config.armorposition." + name().toLowerCase()); 30 + public Component displayName() { 31 + return Component.translatable("config.armorposition." + name().toLowerCase()); 32 32 } 33 33 } 34 34