forked from TrinityCore/TrinityCore
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #419 from TrinityCore/master
Update 01.24.25
- Loading branch information
Showing
19 changed files
with
2,813 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
DELETE FROM `build_info` WHERE `build` IN (58680); | ||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES | ||
(58680,11,0,7,NULL); | ||
|
||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW'; | ||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoWC'; | ||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoWC'; | ||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW'; | ||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW'; | ||
DELETE FROM `build_auth_key` WHERE `build`=58680 AND `platform`='Win' AND `arch`='x64' AND `type`='WoWC'; | ||
INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES | ||
(58680,'Mac','A64','WoW',0x5EE6ABE5386E08867F642B3DFD15A9D4), | ||
(58680,'Mac','A64','WoWC',0x22C636BB4ABBC4AD9AE8F30B6D947774), | ||
(58680,'Mac','x64','WoWC',0xA5FF81211CDCDD60B53C14F932732969), | ||
(58680,'Win','A64','WoW',0x9D6DC8BED265C898836593A9E654A1E1), | ||
(58680,'Win','x64','WoW',0xC1CEFF499F2C2ABF1913E55F65CF278C), | ||
(58680,'Win','x64','WoWC',0x0D6FC77C1D3830AAA871A9E29DCBE380); | ||
|
||
UPDATE `realmlist` SET `gamebuild`=58680 WHERE `gamebuild`=58630; | ||
|
||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '58680'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ALTER TABLE `spell_target_position` DROP PRIMARY KEY; | ||
ALTER TABLE `spell_target_position` ADD `OrderIndex` int NOT NULL DEFAULT '0' AFTER `EffectIndex`; | ||
ALTER TABLE `spell_target_position` ADD PRIMARY KEY(`ID`,`EffectIndex`,`OrderIndex`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
DELIMITER ;; | ||
CREATE PROCEDURE serverside_spell_2025_01_23_00() BEGIN | ||
IF NOT EXISTS (SELECT * FROM `information_schema`.`columns` WHERE `table_schema`=SCHEMA() AND `table_name`='serverside_spell' AND `column_name`='AttributesEx15') THEN | ||
|
||
ALTER TABLE `serverside_spell` | ||
ADD COLUMN `AttributesEx15` int unsigned NOT NULL DEFAULT '0' AFTER `AttributesEx14`; | ||
|
||
END IF; | ||
END;; | ||
|
||
DELIMITER ; | ||
CALL serverside_spell_2025_01_23_00(); | ||
|
||
DROP PROCEDURE IF EXISTS serverside_spell_2025_01_23_00; |
Oops, something went wrong.