File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,12 @@ private async Task RebuildMountsCache()
281
281
282
282
var _companions = new Companions ( _gameInfo . GameDirectory , _gameInfo . GameLanguage ) ;
283
283
var list = await _companions . GetUncachedMountList ( ) ;
284
- list . AddRange ( await _companions . GetUncachedOrnamentList ( ) ) ;
284
+
285
+ // Don't get the ornament list for the Chinese or Korean clients as they don't have them yet
286
+ if ( _gameInfo . GameLanguage != XivLanguage . Chinese && _gameInfo . GameLanguage != XivLanguage . Korean )
287
+ {
288
+ list . AddRange ( await _companions . GetUncachedOrnamentList ( ) ) ;
289
+ }
285
290
286
291
db . Open ( ) ;
287
292
using ( var transaction = db . BeginTransaction ( ) )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ CREATE TABLE "items" (
45
45
" primary_id_2" INTEGER NOT NULL ,
46
46
" secondary_id_2" INTEGER NOT NULL ,
47
47
" imc_variant_2" INTEGER NOT NULL ,
48
- PRIMARY KEY (" name" )
48
+ PRIMARY KEY (" name" , " exd_id " )
49
49
);
50
50
51
51
CREATE TABLE "ui " (
You can’t perform that action at this time.
0 commit comments