diff --git a/README.md b/README.md index 413a02d1d..e5a1c1b6b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ CypherCore is an open source server project for World of Warcraft written in C#. -The current support game version is: 7.3.2.25480 +The current support game version is: 7.3.2.25549 # How to use - Simply compile the solution as you do with TC c++ version. diff --git a/sql/updates/auth/master/2017_12_04_00_auth.sql b/sql/updates/auth/master/2017_12_04_00_auth.sql new file mode 100644 index 000000000..72725ea7a --- /dev/null +++ b/sql/updates/auth/master/2017_12_04_00_auth.sql @@ -0,0 +1,3 @@ +UPDATE `realmlist` SET `gamebuild`=25549 WHERE `gamebuild`=25480; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '25549'; \ No newline at end of file diff --git a/sql/updates/world/master/2017_12_04_00_world.sql b/sql/updates/world/master/2017_12_04_00_world.sql new file mode 100644 index 000000000..39b5e8177 --- /dev/null +++ b/sql/updates/world/master/2017_12_04_00_world.sql @@ -0,0 +1 @@ +ALTER TABLE `quest_template_addon` ADD COLUMN `ScriptName` VARCHAR(64) DEFAULT '' NOT NULL AFTER `SpecialFlags`;