mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[9277] Fixed AP bonus percent for spell 16857.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
dfd5299d7e
commit
965bd2272b
5 changed files with 11 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
||||||
`version` varchar(120) default NULL,
|
`version` varchar(120) default NULL,
|
||||||
`creature_ai_version` varchar(120) default NULL,
|
`creature_ai_version` varchar(120) default NULL,
|
||||||
`cache_id` int(10) default '0',
|
`cache_id` int(10) default '0',
|
||||||
`required_9262_01_mangos_quest_template` bit(1) default NULL
|
`required_9277_01_mangos_spell_bonus_data` bit(1) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -14117,7 +14117,7 @@ INSERT INTO `spell_bonus_data` VALUES
|
||||||
/* Druid */
|
/* Druid */
|
||||||
(5185, 1.6104, 0, 0, 'Druid - Healing Touch'),
|
(5185, 1.6104, 0, 0, 'Druid - Healing Touch'),
|
||||||
(339, 0, 0.1, 0, 'Druid - Entangling Roots'),
|
(339, 0, 0.1, 0, 'Druid - Entangling Roots'),
|
||||||
(60089, 0, 0, 0.05, 'Druid - Faerie Fire (Feral) Triggered'),
|
(60089, 0, 0, 0.15, 'Druid - Faerie Fire (Feral) Triggered'),
|
||||||
(42231, 0.12898,0, 0, 'Druid - Hurricane Triggered'),
|
(42231, 0.12898,0, 0, 'Druid - Hurricane Triggered'),
|
||||||
(5570, 0, 0.2, 0, 'Druid - Insect Swarm'),
|
(5570, 0, 0.2, 0, 'Druid - Insect Swarm'),
|
||||||
(33763, 0, 0.09518, 0, 'Druid - Lifebloom'),
|
(33763, 0, 0.09518, 0, 'Druid - Lifebloom'),
|
||||||
|
|
|
||||||
5
sql/updates/9277_01_mangos_spell_bonus_data.sql
Normal file
5
sql/updates/9277_01_mangos_spell_bonus_data.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_9262_01_mangos_quest_template required_9277_01_mangos_spell_bonus_data bit;
|
||||||
|
|
||||||
|
DELETE FROM spell_bonus_data WHERE entry = 60089;
|
||||||
|
INSERT INTO spell_bonus_data VALUES
|
||||||
|
(60089,0,0,0.15,'Druid - Faerie Fire (Feral) Triggered');
|
||||||
|
|
@ -253,6 +253,7 @@ pkgdata_DATA = \
|
||||||
9246_01_characters_character.sql \
|
9246_01_characters_character.sql \
|
||||||
9250_01_characters_character.sql \
|
9250_01_characters_character.sql \
|
||||||
9262_01_mangos_quest_template.sql \
|
9262_01_mangos_quest_template.sql \
|
||||||
|
9277_01_mangos_spell_bonus_data.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -486,4 +487,5 @@ EXTRA_DIST = \
|
||||||
9246_01_characters_character.sql \
|
9246_01_characters_character.sql \
|
||||||
9250_01_characters_character.sql \
|
9250_01_characters_character.sql \
|
||||||
9262_01_mangos_quest_template.sql \
|
9262_01_mangos_quest_template.sql \
|
||||||
|
9277_01_mangos_spell_bonus_data.sql \
|
||||||
README
|
README
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9276"
|
#define REVISION_NR "9277"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef __REVISION_SQL_H__
|
#ifndef __REVISION_SQL_H__
|
||||||
#define __REVISION_SQL_H__
|
#define __REVISION_SQL_H__
|
||||||
#define REVISION_DB_CHARACTERS "required_9250_01_characters_character"
|
#define REVISION_DB_CHARACTERS "required_9250_01_characters_character"
|
||||||
#define REVISION_DB_MANGOS "required_9262_01_mangos_quest_template"
|
#define REVISION_DB_MANGOS "required_9277_01_mangos_spell_bonus_data"
|
||||||
#define REVISION_DB_REALMD "required_9010_01_realmd_realmlist"
|
#define REVISION_DB_REALMD "required_9010_01_realmd_realmlist"
|
||||||
#endif // __REVISION_SQL_H__
|
#endif // __REVISION_SQL_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue