mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[9349] Add posssibility for one action button set per talent spec.
This commit is contained in:
parent
ddeea6017f
commit
acf507fd5a
9 changed files with 57 additions and 45 deletions
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
DROP TABLE IF EXISTS `character_db_version`;
|
||||
CREATE TABLE `character_db_version` (
|
||||
`required_9339_01_characters_group` bit(1) default NULL
|
||||
`required_9349_01_characters_character_action` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||
|
||||
--
|
||||
|
|
@ -337,6 +337,7 @@ UNLOCK TABLES;
|
|||
DROP TABLE IF EXISTS `character_action`;
|
||||
CREATE TABLE `character_action` (
|
||||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
||||
`spec` tinyint(3) unsigned NOT NULL default '0',
|
||||
`button` tinyint(3) unsigned NOT NULL default '0',
|
||||
`action` int(11) unsigned NOT NULL default '0',
|
||||
`type` tinyint(3) unsigned NOT NULL default '0',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue