Documentation of itemcolorstrings.dat structure

Thanks for spotting that. It can be fixed by changing row 125

for(let i = 0; i < wordsMaxIndex; i++) {
to
for(let i = 0; i <= wordsMaxIndex; i++) {

I’ve edited the gist to reflect this and added the multi-language support.

1 Like