diff --git a/OrekiWoofsBeehives/Blocks/BlockReusableBeehive.cs b/OrekiWoofsBeehives/Blocks/BlockReusableBeehive.cs index 5c93c5b..9fa148e 100644 --- a/OrekiWoofsBeehives/Blocks/BlockReusableBeehive.cs +++ b/OrekiWoofsBeehives/Blocks/BlockReusableBeehive.cs @@ -527,9 +527,9 @@ public class BlockReusableBeehive : Block return baseColor; if (IsFilledFeedFrame(be.Inventory[slotIndex].Itemstack)) - return new Vec4f(0.8f, 0.2f, 0f, baseColor.A); + return new Vec4f(0.8f / 3f, 0.2f / 3f, 0f, baseColor.A); - return new Vec4f(0.6f, 0.3f, 0f, baseColor.A); + return new Vec4f(0.2f, 0.1f, 0f, baseColor.A); } private static bool IsFrame(ItemStack? stack)