diff --git a/commands/retro.py b/commands/retro.py index 5b29289..f114d9b 100644 --- a/commands/retro.py +++ b/commands/retro.py @@ -38,7 +38,7 @@ for console in path.iterdir(): # loop over roms without hashes for rom in Path(path / "hashes" / console.name / "roms").iterdir(): - if rom.is_file(): + if rom.is_file() and "Disc" not in rom.name: # get rom hash with open(rom, "r") as file: hash = file.read()