- flagged more db-entries with CUSTOM_EXCLUDE_FOR_LISTVIEW

- check for this flag on list-pages (search already had this)
This commit is contained in:
Sarjuuk
2014-09-19 19:32:49 +02:00
parent 0620a0081d
commit 49ecdb9a31
14 changed files with 67 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
UPDATE aowow_creature SET cuFlags = cuFlags | 0x40000000 WHERE
name_loc0 like '%(%' OR
name_loc0 like '%[%' OR
name_loc0 like '%<%' OR
name_loc0 like '%placeholder%' OR
name_loc0 like '%DND%' OR
name_loc0 like '%UNUSED%';
UPDATE aowow_currencies SET cuFlags = cuFlags | 0x40000000 WHERE
id IN (1, 2, 4, 22, 141);
UPDATE aowow_skillline SET cuFlags = cuFlags | 0x40000000 WHERE
id IN (769, 142, 148, 149, 150, 152, 155, 533, 553, 554, 713, 183);
UPDATE aowow_items SET cuFlags = cuFlags | 0x40000000 WHERE
name_loc0 like '%[%' OR
name_loc0 like '%(PH)%' OR
name_loc0 like '%(DEPRECATED)%';