(sprito.py) Removed hardcoded transparency leftover

This commit is contained in:
KikooDX 2020-04-13 17:53:07 +02:00
parent 4c4e785fdc
commit c6dec2fb9d
1 changed files with 1 additions and 1 deletions

View File

@ -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)