[0124] 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:
Schmoozerd 2012-08-17 16:24:25 +02:00 committed by Antz
parent 110b11011d
commit ed948ba869
4 changed files with 6 additions and 3 deletions

View file

@ -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_0123_12093_01_mangos_spell_template` bit(1) default NULL
`required_0124_12094_01_mangos_creature_template` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--

View file

@ -0,0 +1,3 @@
ALTER TABLE db_version CHANGE COLUMN required_0123_12093_01_mangos_spell_template required_0124_12094_01_mangos_creature_template bit;
UPDATE creature_template SET flags_extra=flags_extra|0x800;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "0123"
#define REVISION_NR "0124"
#endif // __REVISION_NR_H__

View file

@ -1,6 +1,6 @@
#ifndef __REVISION_SQL_H__
#define __REVISION_SQL_H__
#define REVISION_DB_CHARACTERS "required_0099_xxxxx_01_characters_character_phase_data"
#define REVISION_DB_MANGOS "required_0123_12093_01_mangos_spell_template"
#define REVISION_DB_MANGOS "required_0124_12094_01_mangos_creature_template"
#define REVISION_DB_REALMD "required_0014_xxxxx_01_realmd_account_access"
#endif // __REVISION_SQL_H__