mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Merge pull request #622 from Bobblybook/master
Preferred mount selection for bots
This commit is contained in:
10
sql/playerbots/base/playerbots_preferred_mounts.sql
Normal file
10
sql/playerbots/base/playerbots_preferred_mounts.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS `playerbots_preferred_mounts`;
|
||||
CREATE TABLE `playerbots_preferred_mounts` (
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`guid` INT(11) NOT NULL,
|
||||
`type` TINYINT(3) NOT NULL COMMENT '0: Ground, 1: Flying',
|
||||
`spellid` INT(11) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `guid` (`guid`),
|
||||
KEY `type` (`type`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user