diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/blockentity/HoloSignRenderer.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/blockentity/HoloSignRenderer.kt index 45ca54dd4..dc86fa0d6 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/blockentity/HoloSignRenderer.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/blockentity/HoloSignRenderer.kt @@ -38,7 +38,7 @@ class HoloSignRenderer(private val context: BlockEntityRendererProvider.Context) if (tile.textAutoScale) { val totalWidth = lines.maxOf { font.width(it) }.toFloat() val highest = totalWidth.coerceAtLeast(totalHeight) - val mul = if (highest > 64f) 1f / (highest / 64f) else 64f / highest + val mul = if (highest > 96f) 1f / (highest / 96f) else 96f / highest poseStack.scale(mul, mul, mul) }