From 5f03e73484a50c9689956b32ef97630b56d2a00d Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 29 Dec 2010 07:41:49 +0100 Subject: Made the server handle properly the characters slots. I turned the vector storing character data into a map, keeping the character's slot. Fixed a memleak along the way. Reviewed-by: Crush. --- src/sql/mysql/createTables.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sql/mysql/createTables.sql') diff --git a/src/sql/mysql/createTables.sql b/src/sql/mysql/createTables.sql index eb62d86..42ccfa6 100644 --- a/src/sql/mysql/createTables.sql +++ b/src/sql/mysql/createTables.sql @@ -40,6 +40,7 @@ CREATE TABLE IF NOT EXISTS `mana_characters` ( `x` smallint(5) unsigned NOT NULL, `y` smallint(5) unsigned NOT NULL, `map_id` tinyint(3) unsigned NOT NULL, + `slot` smallint(5) unsigned NOT NULL, -- PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), -- cgit