

I think it’s still against the etiquette of torrenting as well. If you only download a few episodes from a season pack then partial seeding is fine, but leaving a game unplayable if you’re the only seed is wrong in my opinion.
That said, in terms of solutions OP, if you’re conscious of disk space:
- You could hard link the files that don’t change to a new folder, then copy the ones that do change. Don’t need to change filesystems like the other person’s solution. Soft link will also work but then when you wanna delete the torrent files you’ll have to go manually copy the rest over to your install folder.
- You could always try “force recheck” in the torrent application once you finish playing. It’s likely that whatever changes are happening to those files only occurs while the game is open, potentially even just locking them to read-only, and the torrent application won’t really recheck them once that happens without manual intervention.
Edit: tagging so you see this OP: @Ghost999@lemmy.dbzer0.com
If you wanna hard link a directory btw, use
cp -lR <src-dir> <dest-dir>
to do it. You can’t actually hard link the directory itself, only its contents, so this command will create the directory structure and hard link the files within them.