Fixed restoring multiple summons.

This commit is contained in:
MobiusDevelopment
2020-06-06 05:54:45 +00:00
parent 2ed402df38
commit 381abc4cb2
30 changed files with 60 additions and 75 deletions

View File

@@ -6,5 +6,5 @@ CREATE TABLE IF NOT EXISTS `character_summons` (
`curHp` int(9) unsigned DEFAULT '0',
`curMp` int(9) unsigned DEFAULT '0',
`time` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ownerId`,`summonSkillId`)
PRIMARY KEY (`ownerId`,`summonId`,`summonSkillId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;