From 3698b83e2a8d60850a1b88268532b42df570dea6 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 10 Mar 2023 04:50:06 +0100 Subject: change color --- .../at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') 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()) { -- cgit