[Bug]: Items with custom rarities are rendered black
thelegitdolt opened this issue ยท 2 comments
can attest to this, only occurs when its a custom color being assigned as opposed to an in-built chat formatting color being used.
nuclear rarity (for tremorzilla egg below) is registered as follows and does work correctly.
public static final Rarity RARITY_NUCLEAR = Rarity.create("alexscaves:nuclear", ChatFormatting.GREEN);
while sweet rarity (for sweet tooth below) is registered as follows and does not work correctly.
public static final Rarity RARITY_SWEET = Rarity.create("alexscaves:sweet", style -> style.withColor(0XFF8ACD));
while it should look like this:
this error only occurs with rarities using custom colors. as shown to work correctly with descriptions below


