refactor: remove FIREHOSE conditional from bot_f calculation.

This commit is contained in:
2026-03-14 16:38:56 -07:00
parent ce81f94a9b
commit 20ebe96ea6

View File

@@ -770,7 +770,7 @@ def stream(items):
for r in range(sh): for r in range(sh):
cy = cam + r cy = cam + r
top_f = min(1.0, r / top_zone) top_f = min(1.0, r / top_zone)
bot_f = 1.0 if FIREHOSE else min(1.0, (sh - 1 - r) / bot_zone) bot_f = min(1.0, (sh - 1 - r) / bot_zone)
row_fade = min(top_f, bot_f) row_fade = min(top_f, bot_f)
drawn = False drawn = False
for content, hc, by, midx in active: for content, hc, by, midx in active: