diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-06 02:48:07 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-06 02:48:07 +0100 |
commit | 802f9efa42214e86739fa5967c9064989cc3ce02 (patch) | |
tree | 863ff2a664a86e4a149e997d0d02ab2ae3911336 | |
parent | d55832a51961aed2c185b16bec8a2fce9f811d01 (diff) | |
download | skyhanni-802f9efa42214e86739fa5967c9064989cc3ce02.tar.gz skyhanni-802f9efa42214e86739fa5967c9064989cc3ce02.tar.bz2 skyhanni-802f9efa42214e86739fa5967c9064989cc3ce02.zip |
Changed color for done garden visitors.
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt | 2 |
1 files changed, 1 insertions, 1 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 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()) { |