Merged in skeletonhorn/ffxiv-classic-server-ai-fork/ai-open (pull request #4)

Minor changes to fix equipability bugs
This commit is contained in:
yogurt 2017-09-08 14:22:41 +00:00 committed by Tahir Akhlaq
commit 9077c60b96
2 changed files with 4 additions and 3 deletions

View file

@ -23,13 +23,12 @@ DROP TABLE IF EXISTS `characters_hotbar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_hotbar` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`classId` smallint(5) unsigned NOT NULL,
`hotbarSlot` smallint(5) unsigned NOT NULL,
`commandId` int(10) unsigned NOT NULL,
`recastTime` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
PRIMARY KEY (`characterId`, `classId`, `hotbarSlot`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;