Ignore nonsense in blockstate strings (from user-defined blocks?)
This commit is contained in:
parent
7a421bac5d
commit
d27c5d0fd4
@ -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 = []
|
||||
|
||||
for part in multipart:
|
||||
|
Reference in New Issue
Block a user