Missed on final review...

This commit is contained in:
Uleat 2015-10-12 17:59:29 -04:00
parent 79eb2d3d4b
commit df88107697
2 changed files with 3 additions and 1 deletions

View File

@ -124,7 +124,7 @@ BEGIN
`class` TINYINT(2) NOT NULL DEFAULT '0',
`level` TINYINT(2) UNSIGNED NOT NULL DEFAULT '0',
`deity` INT(11) UNSIGNED NOT NULL DEFAULT '0', -- Unused
`creation_day` INT(11) UNSIGNED NOT NULL DEFAULT UNIX_TIMESTAMP,
`creation_day` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`last_spawn` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`time_spawned` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`size` FLOAT NOT NULL DEFAULT '0',

View File

@ -1563,6 +1563,7 @@ bool Bot::Save()
" `race`,"
" `class`,"
" `level`,"
" `creation_date`,"
" `last_spawn`,"
" `time_spawned`,"
" `size`,"
@ -1604,6 +1605,7 @@ bool Bot::Save()
" '%i'," /*race*/
" '%i'," /*class*/
" '%u'," /*level*/
" UNIX_TIMESTAMP(),"/*creation_date*/
" UNIX_TIMESTAMP(),"/*last_spawn*/
" 0," /*time_spawned*/
" '%f'," /*size*/