LemmaEOF opened this issue 4 years ago ยท 1 comments
log code
It looks like trying to register too many component types might an IOOB - maybe the reassignment isn't working properly?
Found the actual problem line! if (this.raw2Types.length < rawId) doesn't work because arrays zero-index; it needs to be <= instead
if (this.raw2Types.length < rawId)
<=