Ignore nonsense in blockstate strings (from user-defined blocks?)

This commit is contained in:
David Vierra 2017-03-30 03:50:59 -10:00
parent 7a421bac5d
commit d27c5d0fd4

View File

@ -496,7 +496,7 @@ cdef class BlockModels(object):
# ] # ]
# } # }
# ] # ]
variantMap = dict(pair.split('=') for pair in resourceVariant.split(',')) variantMap = dict(pair.split('=') for pair in resourceVariant.split(',') if '=' in pair)
ret = [] ret = []
for part in multipart: for part in multipart: