mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- 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:
18
setup/updates/09_internal_db_items.sql
Normal file
18
setup/updates/09_internal_db_items.sql
Normal 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)%';
|
||||
Reference in New Issue
Block a user