@@ -52,15 +52,15 @@ public static string AreaPOIState()
52
52
[ BuilderMethod ]
53
53
public static string BattlePetSpecies ( )
54
54
{
55
- if ( Storage . BattlePetSpecies . IsEmpty ( ) )
55
+ if ( Storage . BattlePetSpeciesBag . IsEmpty ( ) )
56
56
return string . Empty ;
57
57
58
58
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . battle_pet_species ) )
59
59
return string . Empty ;
60
60
61
- var templatesDb = SQLDatabase . Get ( Storage . BattlePetSpecies , Settings . HotfixesDatabase ) ;
61
+ var templatesDb = SQLDatabase . Get ( Storage . BattlePetSpeciesBag , Settings . HotfixesDatabase ) ;
62
62
63
- return SQLUtil . Compare ( Storage . BattlePetSpecies , templatesDb , StoreNameType . None ) ;
63
+ return SQLUtil . Compare ( Storage . BattlePetSpeciesBag , templatesDb , StoreNameType . None ) ;
64
64
}
65
65
66
66
[ BuilderMethod ]
@@ -164,15 +164,15 @@ public static string CurvePoint()
164
164
[ BuilderMethod ]
165
165
public static string HolidayData ( )
166
166
{
167
- if ( Storage . Holidays . IsEmpty ( ) )
167
+ if ( Storage . HolidaysBag . IsEmpty ( ) )
168
168
return string . Empty ;
169
169
170
170
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . holidays ) )
171
171
return string . Empty ;
172
172
173
- var templatesDb = SQLDatabase . Get ( Storage . Holidays , Settings . HotfixesDatabase ) ;
173
+ var templatesDb = SQLDatabase . Get ( Storage . HolidaysBag , Settings . HotfixesDatabase ) ;
174
174
175
- return SQLUtil . Compare ( Storage . Holidays , templatesDb , StoreNameType . None ) ;
175
+ return SQLUtil . Compare ( Storage . HolidaysBag , templatesDb , StoreNameType . None ) ;
176
176
}
177
177
178
178
[ BuilderMethod ]
@@ -251,7 +251,7 @@ public static string ItemEffect()
251
251
if ( Storage . ItemEffects . IsEmpty ( ) )
252
252
return string . Empty ;
253
253
254
- if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . item_extended_cost ) )
254
+ if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . item_effect ) )
255
255
return string . Empty ;
256
256
257
257
var templatesDb = SQLDatabase . Get ( Storage . ItemEffects , Settings . HotfixesDatabase ) ;
@@ -279,7 +279,7 @@ public static string ItemModifiedAppearance()
279
279
if ( Storage . ItemModifiedAppearances . IsEmpty ( ) )
280
280
return string . Empty ;
281
281
282
- if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . item_extended_cost ) )
282
+ if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . item_modified_appearance ) )
283
283
return string . Empty ;
284
284
285
285
var templatesDb = SQLDatabase . Get ( Storage . ItemModifiedAppearances , Settings . HotfixesDatabase ) ;
@@ -304,15 +304,15 @@ public static string ItemSparse()
304
304
[ BuilderMethod ]
305
305
public static string GameObjects ( )
306
306
{
307
- if ( Storage . GameObjects . IsEmpty ( ) )
307
+ if ( Storage . GameObjectsBag . IsEmpty ( ) )
308
308
return string . Empty ;
309
309
310
310
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . gameobjectDB2 ) )
311
311
return string . Empty ;
312
312
313
- var templatesDb = SQLDatabase . Get ( Storage . GameObjects , Settings . HotfixesDatabase ) ;
313
+ var templatesDb = SQLDatabase . Get ( Storage . GameObjectsBag , Settings . HotfixesDatabase ) ;
314
314
315
- return SQLUtil . Compare ( Storage . GameObjects , templatesDb , StoreNameType . GameObject ) ;
315
+ return SQLUtil . Compare ( Storage . GameObjectsBag , templatesDb , StoreNameType . GameObject ) ;
316
316
}
317
317
318
318
[ BuilderMethod ]
@@ -402,43 +402,43 @@ public static string SceneScript()
402
402
[ BuilderMethod ]
403
403
public static string SpellAuraRestrictions ( )
404
404
{
405
- if ( Storage . SpellAuraRestrictions . IsEmpty ( ) )
405
+ if ( Storage . SpellAuraRestrictionsBag . IsEmpty ( ) )
406
406
return string . Empty ;
407
407
408
408
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_aura_restrictions ) )
409
409
return string . Empty ;
410
410
411
- var templatesDb = SQLDatabase . Get ( Storage . SpellAuraRestrictions , Settings . HotfixesDatabase ) ;
411
+ var templatesDb = SQLDatabase . Get ( Storage . SpellAuraRestrictionsBag , Settings . HotfixesDatabase ) ;
412
412
413
- return SQLUtil . Compare ( Storage . SpellAuraRestrictions , templatesDb , StoreNameType . None ) ;
413
+ return SQLUtil . Compare ( Storage . SpellAuraRestrictionsBag , templatesDb , StoreNameType . None ) ;
414
414
}
415
415
416
416
[ BuilderMethod ]
417
417
public static string SpellCastingRequirements ( )
418
418
{
419
- if ( Storage . SpellCastingRequirements . IsEmpty ( ) )
419
+ if ( Storage . SpellCastingRequirementsBag . IsEmpty ( ) )
420
420
return string . Empty ;
421
421
422
422
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_casting_requirements ) )
423
423
return string . Empty ;
424
424
425
- var templatesDb = SQLDatabase . Get ( Storage . SpellCastingRequirements , Settings . HotfixesDatabase ) ;
425
+ var templatesDb = SQLDatabase . Get ( Storage . SpellCastingRequirementsBag , Settings . HotfixesDatabase ) ;
426
426
427
- return SQLUtil . Compare ( Storage . SpellCastingRequirements , templatesDb , StoreNameType . None ) ;
427
+ return SQLUtil . Compare ( Storage . SpellCastingRequirementsBag , templatesDb , StoreNameType . None ) ;
428
428
}
429
429
430
430
[ BuilderMethod ]
431
431
public static string SpellClassOptions ( )
432
432
{
433
- if ( Storage . SpellClassOptions . IsEmpty ( ) )
433
+ if ( Storage . SpellClassOptionsBag . IsEmpty ( ) )
434
434
return string . Empty ;
435
435
436
436
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_class_options ) )
437
437
return string . Empty ;
438
438
439
- var templatesDb = SQLDatabase . Get ( Storage . SpellClassOptions , Settings . HotfixesDatabase ) ;
439
+ var templatesDb = SQLDatabase . Get ( Storage . SpellClassOptionsBag , Settings . HotfixesDatabase ) ;
440
440
441
- return SQLUtil . Compare ( Storage . SpellClassOptions , templatesDb , StoreNameType . None ) ;
441
+ return SQLUtil . Compare ( Storage . SpellClassOptionsBag , templatesDb , StoreNameType . None ) ;
442
442
}
443
443
444
444
[ BuilderMethod ]
@@ -500,23 +500,23 @@ public static string SpellPower()
500
500
[ BuilderMethod ]
501
501
public static string SpellReagents ( )
502
502
{
503
- if ( Storage . SpellReagents . IsEmpty ( ) )
503
+ if ( Storage . SpellReagentsBag . IsEmpty ( ) )
504
504
return string . Empty ;
505
505
506
506
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_power ) )
507
507
return string . Empty ;
508
508
509
- var templatesDb = SQLDatabase . Get ( Storage . SpellReagents , Settings . HotfixesDatabase ) ;
509
+ var templatesDb = SQLDatabase . Get ( Storage . SpellReagentsBag , Settings . HotfixesDatabase ) ;
510
510
511
- return SQLUtil . Compare ( Storage . SpellReagents , templatesDb , StoreNameType . None ) ;
511
+ return SQLUtil . Compare ( Storage . SpellReagentsBag , templatesDb , StoreNameType . None ) ;
512
512
}
513
513
514
514
public static string SpellRuneCost ( )
515
515
{
516
516
if ( Storage . SpellRuneCosts . IsEmpty ( ) )
517
517
return string . Empty ;
518
518
519
- if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_power ) )
519
+ if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_rune_cost ) )
520
520
return string . Empty ;
521
521
522
522
var templatesDb = SQLDatabase . Get ( Storage . SpellRuneCosts , Settings . HotfixesDatabase ) ;
@@ -527,28 +527,28 @@ public static string SpellRuneCost()
527
527
[ BuilderMethod ]
528
528
public static string SpellTotems ( )
529
529
{
530
- if ( Storage . SpellTotems . IsEmpty ( ) )
530
+ if ( Storage . SpellTotemsBag . IsEmpty ( ) )
531
531
return string . Empty ;
532
532
533
533
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . spell_totems ) )
534
534
return string . Empty ;
535
535
536
- var templatesDb = SQLDatabase . Get ( Storage . SpellTotems , Settings . HotfixesDatabase ) ;
536
+ var templatesDb = SQLDatabase . Get ( Storage . SpellTotemsBag , Settings . HotfixesDatabase ) ;
537
537
538
- return SQLUtil . Compare ( Storage . SpellTotems , templatesDb , StoreNameType . None ) ;
538
+ return SQLUtil . Compare ( Storage . SpellTotemsBag , templatesDb , StoreNameType . None ) ;
539
539
}
540
540
541
541
public static string TaxiNodes ( )
542
542
{
543
- if ( Storage . TaxiNodes . IsEmpty ( ) )
543
+ if ( Storage . TaxiNodesBag . IsEmpty ( ) )
544
544
return string . Empty ;
545
545
546
546
if ( ! Settings . HotfixSQLOutputFlag . HasAnyFlagBit ( HotfixSQLOutput . taxi_nodes ) )
547
547
return string . Empty ;
548
548
549
- var templatesDb = SQLDatabase . Get ( Storage . TaxiNodes , Settings . HotfixesDatabase ) ;
549
+ var templatesDb = SQLDatabase . Get ( Storage . TaxiNodesBag , Settings . HotfixesDatabase ) ;
550
550
551
- return SQLUtil . Compare ( Storage . TaxiNodes , templatesDb , StoreNameType . None ) ;
551
+ return SQLUtil . Compare ( Storage . TaxiNodesBag , templatesDb , StoreNameType . None ) ;
552
552
}
553
553
554
554
public static string TaxiPathNode ( )
0 commit comments