mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 16:10:49 +01:00
[svn] * Fixed compile from r78
* Fixed: not apply healling bonus to spell 40972 heal amount. - Source Mangos * Item 30627 hidden cooldown - Source Mangos * Fixed Trinityrealm autopatching system - Source Arrai * Add support for autoconf 2.6.2 and newer - Source Derex Some decent sized changes, please test before deploying - KP --HG-- branch : trunk
This commit is contained in:
@@ -608,7 +608,7 @@ CREATE TABLE `characters` (
|
||||
`trans_z` float NOT NULL default '0',
|
||||
`trans_o` float NOT NULL default '0',
|
||||
`transguid` bigint(20) unsigned NOT NULL default '0',
|
||||
`gmstate` tinyint(3) unsigned NOT NULL default '0',
|
||||
`extra_flags` tinyint(3) unsigned NOT NULL default '0',
|
||||
`stable_slots` tinyint(1) unsigned NOT NULL default '0',
|
||||
`at_login` int(11) unsigned NOT NULL default '0',
|
||||
`zone` int(11) unsigned NOT NULL default '0',
|
||||
|
||||
2
sql/updates/79_characters.sql
Normal file
2
sql/updates/79_characters.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE characters
|
||||
CHANGE COLUMN gmstate extra_flags int(11) unsigned NOT NULL default '0';
|
||||
6
sql/updates/79_world.sql
Normal file
6
sql/updates/79_world.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
DELETE FROM spell_proc_event where entry = 42083;
|
||||
INSERT INTO spell_proc_event (entry, SchoolMask, Category, SkillID, SpellFamilyName, SpellFamilyMask, procFlags, ppmRate, cooldown) VALUES
|
||||
(42083,0,0,0,0,0x0000000000000000,0x00401000,0,45);
|
||||
|
||||
ALTER TABLE characters
|
||||
CHANGE COLUMN gmstate extra_flags int(11) unsigned NOT NULL default '0';
|
||||
Reference in New Issue
Block a user