From ee700c442e2c9abc056b09a546ed70fd8565e4c3 Mon Sep 17 00:00:00 2001 From: YuRaNnNzZZ Date: Tue, 31 Oct 2023 22:36:59 +0300 Subject: [PATCH] undo dye bar static non-dye background color --- .../mc/otm/client/screen/decorative/PainterScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/decorative/PainterScreen.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/decorative/PainterScreen.kt index f738f1c56..45ff52d34 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/decorative/PainterScreen.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/decorative/PainterScreen.kt @@ -49,7 +49,7 @@ class PainterScreen(menu: PainterMenu, inventory: Inventory, title: Component) : } override fun innerRender(graphics: GuiGraphics, mouseX: Float, mouseY: Float, partialTick: Float) { - graphics.renderRect(0f, 0f, width, height, color = RGBAColor.LIGHT_GRAY) + graphics.renderRect(0f, 0f, width, height, color = RGBAColor.DARK_GRAY) val color = RGBAColor.rgb(dye?.textColor ?: DyeColor.LIGHT_BLUE.textColor)