maybeeee fix more stuff for gob videos (#1262)

This commit is contained in:
NotSoToothless
2026-05-19 17:37:41 -07:00
committed by GitHub
parent 2c9e89eee2
commit f511cdc083
3 changed files with 112 additions and 8 deletions
+2 -2
View File
@@ -818,7 +818,7 @@ async def _process_squadron_points(
# SAFE CHUNK BUILDER
max_len = 1024
chunks = []
buf = "```\nName Change Now KDR KPS\n"
buf = "```\nName Change Now KDR\n"
for uid, (delta, now) in sorted_changes:
name_raw = (
@@ -837,7 +837,7 @@ async def _process_squadron_points(
current_points_str = f"{now:>6}"
# DO NOT CHANGE
line = f"{member_str}{change_str}{current_points_str} {kdr_str:>5} {kps_str:>5}\n"
line = f"{member_str}{change_str}{current_points_str} {kdr_str:>5}\n"
# Width-safe check
if discord_len(buf) + discord_len(line) > max_len: