Forgot to merge the changes into the main file again.

And also forgot to restore the default values before commiting. It is getting late here. -_-

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17195 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
lemongrass3110 2013-03-13 00:21:15 +00:00
parent cd8d185f8e
commit dfa3bdbe17
2 changed files with 2 additions and 1 deletions

View File

@ -192,7 +192,7 @@ char_move_enabled: yes
// Allow users to move a character to a used slot? // Allow users to move a character to a used slot?
// If enabled the characters are exchanged. // If enabled the characters are exchanged.
// Default: yes // Default: yes
char_movetoused: no char_movetoused: yes
// Allow users to move characters as often as they like? // Allow users to move characters as often as they like?
char_moves_unlimited: no char_moves_unlimited: no

View File

@ -106,6 +106,7 @@ CREATE TABLE IF NOT EXISTS `char` (
`fame` int(11) unsigned NOT NULL default '0', `fame` int(11) unsigned NOT NULL default '0',
`rename` SMALLINT(3) unsigned NOT NULL default '0', `rename` SMALLINT(3) unsigned NOT NULL default '0',
`delete_date` INT(11) UNSIGNED NOT NULL DEFAULT '0', `delete_date` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`moves` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`char_id`), PRIMARY KEY (`char_id`),
UNIQUE KEY `name_key` (`name`), UNIQUE KEY `name_key` (`name`),
KEY `account_id` (`account_id`), KEY `account_id` (`account_id`),