[20] fix blur(50)

This commit is contained in:
meisnate12 2022-04-21 10:41:57 -04:00
parent ac8dde0fb3
commit f2c8ee3f4d
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.16.5-develop19
1.16.5-develop20

View file

@ -319,7 +319,7 @@ class CollectionBuilder:
self.overlay = "blur(50)"
overlay_path = os.path.join(library.overlay_folder, f"{self.overlay}.png")
if self.overlay != "blur" and not os.path.exists(overlay_path):
if not self.overlay.startswith("blur") and not os.path.exists(overlay_path):
raise Failed(f"{self.Type} Error: Overlay Image not found at: {overlay_path}")
if "suppress_overlays" in methods: