mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
* Now player can join to BG after logout during 5 minutes, if BG in progress. * All players after server crash or restart should appear at the battlemaster Signed-off-by: VladimirMangos <vladimir@getmangos.com>
11 lines
637 B
SQL
11 lines
637 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_7251_02_characters_character_spell required_7255_01_characters_characters bit;
|
|
|
|
ALTER TABLE `characters`
|
|
ADD COLUMN `bgid` int(10) unsigned NOT NULL default '0' AFTER `arena_pending_points`,
|
|
ADD COLUMN `bgteam` int(10) unsigned NOT NULL default '0' AFTER `bgid`,
|
|
ADD COLUMN `bgmap` int(10) unsigned NOT NULL default '0' AFTER `bgteam`,
|
|
ADD COLUMN `bgx` float NOT NULL default '0' AFTER `bgmap`,
|
|
ADD COLUMN `bgy` float NOT NULL default '0' AFTER `bgx`,
|
|
ADD COLUMN `bgz` float NOT NULL default '0' AFTER `bgy`,
|
|
ADD COLUMN `bgo` float NOT NULL default '0' AFTER `bgz`;
|
|
|