mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[12094] Apply CREATURE_FLAG_EXTRA_NO_TALKTO_CREDIT to all creatures
The flag was introduced in [11853]. It is assumed that by now all quests that require some talk-to credit are handled by different means. If you catch quests that don't work yet, remove this flag for this npc and report to your DB provider.
This commit is contained in:
parent
7f4848f655
commit
d5dd1be99f
4 changed files with 6 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
|||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`cache_id` int(10) default '0',
|
||||
`required_12093_01_mangos_spell_template` bit(1) default NULL
|
||||
`required_12094_01_mangos_creature_template` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
|
|||
3
sql/updates/12094_01_mangos_creature_template.sql
Normal file
3
sql/updates/12094_01_mangos_creature_template.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_12093_01_mangos_spell_template required_12094_01_mangos_creature_template bit;
|
||||
|
||||
UPDATE creature_template SET flags_extra=flags_extra|0x800;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "12093"
|
||||
#define REVISION_NR "12094"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_11785_02_characters_instance"
|
||||
#define REVISION_DB_MANGOS "required_12093_01_mangos_spell_template"
|
||||
#define REVISION_DB_MANGOS "required_12094_01_mangos_creature_template"
|
||||
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue