From 9fc533c7ee5b9d6693b351e15dba3b8df62233b8 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Sat, 17 Aug 2024 19:20:21 -0400 Subject: Change Rarity Background Default Settings (#935) Most people I've seen have this feature enabled (in 1.8 and 1.21), and the square style is a little better fit to the vanilla style --- src/main/java/de/hysky/skyblocker/config/configs/GeneralConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/de') diff --git a/src/main/java/de/hysky/skyblocker/config/configs/GeneralConfig.java b/src/main/java/de/hysky/skyblocker/config/configs/GeneralConfig.java index 0c6bfd40..ccf181eb 100644 --- a/src/main/java/de/hysky/skyblocker/config/configs/GeneralConfig.java +++ b/src/main/java/de/hysky/skyblocker/config/configs/GeneralConfig.java @@ -181,10 +181,10 @@ public class GeneralConfig { public boolean attributeShardInfo = true; @SerialEntry - public boolean itemRarityBackgrounds = false; + public boolean itemRarityBackgrounds = true; @SerialEntry - public RarityBackgroundStyle itemRarityBackgroundStyle = RarityBackgroundStyle.CIRCULAR; + public RarityBackgroundStyle itemRarityBackgroundStyle = RarityBackgroundStyle.SQUARE; @SerialEntry public float itemRarityBackgroundsOpacity = 1f; -- cgit