From 4661903898cf9a9997ba58fd592bb3845ac2dde6 Mon Sep 17 00:00:00 2001 From: haykam821 <24855774+haykam821@users.noreply.github.com> Date: Fri, 21 Jun 2024 01:28:37 -0400 Subject: [PATCH] Change the totem holder role color to yellow --- .../io/github/haykam821/totemhunt/game/role/HolderRole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/haykam821/totemhunt/game/role/HolderRole.java b/src/main/java/io/github/haykam821/totemhunt/game/role/HolderRole.java index 98194f9..f05decc 100644 --- a/src/main/java/io/github/haykam821/totemhunt/game/role/HolderRole.java +++ b/src/main/java/io/github/haykam821/totemhunt/game/role/HolderRole.java @@ -9,7 +9,7 @@ import net.minecraft.util.Formatting; public class HolderRole extends Role { - private static final Text NAME = Text.translatable("text.totemhunt.role.holder").formatted(Formatting.GOLD); + private static final Text NAME = Text.translatable("text.totemhunt.role.holder").formatted(Formatting.YELLOW); private static final ItemStack TOTEM = new ItemStack(Items.TOTEM_OF_UNDYING); @Override