diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-10 04:50:06 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-10 04:50:06 +0100 |
commit | 3698b83e2a8d60850a1b88268532b42df570dea6 (patch) | |
tree | 4cb9104e472d1f9e85b30238f20b3b7c0bce1133 | |
parent | 19a3e73823978ea60ea660b76b3b69906466b12d (diff) | |
download | skyhanni-3698b83e2a8d60850a1b88268532b42df570dea6.tar.gz skyhanni-3698b83e2a8d60850a1b88268532b42df570dea6.tar.bz2 skyhanni-3698b83e2a8d60850a1b88268532b42df570dea6.zip |
change color
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt index 6e9d51fbf..b783e9093 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt @@ -1,7 +1,6 @@ package at.hannibal2.skyhanni.features.garden import at.hannibal2.skyhanni.SkyHanniMod -import at.hannibal2.skyhanni.config.features.Garden import at.hannibal2.skyhanni.data.IslandType import at.hannibal2.skyhanni.data.ScoreboardData.Companion.sidebarLinesFormatted import at.hannibal2.skyhanni.data.SendTitleHelper @@ -280,7 +279,7 @@ class GardenVisitorFeatures { if (entity is EntityLivingBase) { if (visitor.done) { - val color = LorenzColor.DARK_GRAY.toColor().withAlpha(120) + val color = LorenzColor.DARK_GRAY.toColor().withAlpha(60) RenderLivingEntityHelper.setEntityColor(entity, color) { config.visitorHighlight } } else if (visitor.items.isEmpty()) { |