diff --git a/game/scripts/utility/image_crop.rpy b/game/scripts/utility/image_crop.rpy index 694341c2..2b27c5b3 100644 --- a/game/scripts/utility/image_crop.rpy +++ b/game/scripts/utility/image_crop.rpy @@ -25,10 +25,10 @@ init python: size = surf.get_size() box = tuple(surf.get_bounding_rect()) - if size[0] != 1010: + if "/clothes/" in path and size[0] != 1010: ratio = size[0] / 1010 box = tuple(v/ratio for v in box) - whitespace_dict[path] = box + whitespace_dict[path] = tuple(map(int, box)) return box def crop_image_zoom(path, xsize, ysize, grayscale=False):