From 802f9efa42214e86739fa5967c9064989cc3ce02 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 6 Mar 2023 02:48:07 +0100 Subject: Changed color for done garden visitors. --- .../java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2') 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 cba2e6e80..6fbbb7923 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt @@ -278,7 +278,7 @@ class GardenVisitorFeatures { if (entity is EntityLivingBase) { if (visitor.done) { - val color = LorenzColor.WHITE.toColor().withAlpha(120) + val color = LorenzColor.DARK_GRAY.toColor().withAlpha(120) RenderLivingEntityHelper.setEntityColor(entity, color) { config.visitorHighlight } } else if (visitor.items.isEmpty()) { -- cgit