From c6dec2fb9d4cc952c3331e4415bc8c7288d79070 Mon Sep 17 00:00:00 2001 From: KikooDX Date: Mon, 13 Apr 2020 17:53:07 +0200 Subject: [PATCH] (sprito.py) Removed hardcoded transparency leftover --- sprito.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprito.py b/sprito.py index 8d23cb1..34c1d1a 100644 --- a/sprito.py +++ b/sprito.py @@ -20,7 +20,7 @@ class SpriteIndexed: raw_data = [] for i in range(len(self.data)): data_cell = self.data[i] - if data_cell and data_cell != " ": + if data_cell: raw_data.append(pallet[data_cell]) else: raw_data.append(None)