Stop trying to sort resources

Definitely didn't match Rez's behaviour
This commit is contained in:
Elliot Nunn 2018-10-23 19:15:58 +08:00
parent ea2048c509
commit 73009e7aa9

View File

@ -314,9 +314,6 @@ def make_rez_code(from_iter, ascii_clean=False):
`ascii_clean` argument is used to get a 7-bit-only code block.
"""
from_iter = list(from_iter)
from_iter.sort(key=lambda res: res.type)
if ascii_clean:
themap = CLEANMAP
else: