fix(hud): Correct overlay logic and context mismatch

This commit is contained in:
2026-03-20 03:40:09 -07:00
parent b2404068dd
commit f64590c0a3
2 changed files with 6 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ class HudEffect(EffectPlugin):
for i, line in enumerate(hud_lines):
if i < len(result):
result[i] = line + result[i][len(line) :]
result[i] = line
else:
result.append(line)