Questie

Questie

116M Downloads

LangObjectLookup table is String -> ID

39hn-zz opened this issue · 1 comments

commented

Bug description

Other tables for locale are ID -> String.

LangNameLookup['koKR'] = {
[3] = '굶주린 시체',
[6] = '코볼트 졸개',
[30] = '숲거미',
}

But for Object, the table is String -> ID.

LangObjectLookup['koKR'] = {
["오래된 사자상"] = 31,
["가라앉은 상자"] = 32,
["낡은 단지"] = 34,
}

So if there are objects with the same name, the last one overwrites them.
So it's all ignored except for the last one.

this is also related with this issue (#1287).

Questie version

4.3.0 0 37acad5

commented

Seems to be fixed in latest release