Private
Public Access
1
0

adjust selection color values, as in 1.22 the whole block selection color changes, instead of the single selection box

This commit is contained in:
2026-05-25 09:34:56 +02:00
parent c5d34ec1b5
commit 136826aa68

View File

@@ -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)