From 32d4e101f49deefd1e49c2122348d88af4ce5093 Mon Sep 17 00:00:00 2001 From: hikariatama Date: Mon, 13 Mar 2023 08:23:14 +0000 Subject: [PATCH] Correct maximum caption size in heta --- hikka/modules/unit_heta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hikka/modules/unit_heta.py b/hikka/modules/unit_heta.py index 5aca0fb..50c630f 100644 --- a/hikka/modules/unit_heta.py +++ b/hikka/modules/unit_heta.py @@ -317,7 +317,7 @@ class UnitHeta(loader.Module): text = strings.format(**kwargs) - if len(text) > 4096: + if len(text) > 2048: kwargs["commands"] = "..." text = strings.format(**kwargs)