Copy05/CopyrightArmor

`depth` dosn't work like intended

Opened this issue · 0 comments

Copy05 commented

It'll be a easy fix.

# There should be a explicit check for if depth reached 0. it will exit (SystemExit)
if depth is not None and depth <= 0:
        return
    
    if depth is not None:
        depth -= 1