Update download.py

This commit is contained in:
TylerCG 2026-04-08 22:26:33 -04:00
parent 5565ba59bc
commit 6a04589cc3

View File

@ -158,7 +158,7 @@ class dropout():
def show(show, season, specials=False, episode_start=None):
server_season = int(season) - 2 if show == "Dimension 20" and int(season) > 30 else int(season)
server_season = int(season) - 2 if show == "Dimension 20" and int(season) >= 30 else int(season)
season_str = f"{server_season:02}" if not specials else "00"
directory = f"/tv/{show}/{'Specials' if specials else f'Season {server_season}'}"
os.makedirs(directory, exist_ok=True)