[20] fix blur(50)

pull/858/head
meisnate12 3 years ago
parent ac8dde0fb3
commit f2c8ee3f4d

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

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

Loading…
Cancel
Save