- Fixed the txt->sql converter not escaping character names before saving them.
- Fixed a pet's level not resetting to their db level when you enable pet leveling and later on decide to turn it off. - Fixed a bad initialization in pc_setnewpc - Fixed restricted equipment not updating your view info after they are unequipped. - Removed a bunch of extra text/checks when ignoring characters (/ex) when Aegis does none of these checks. /inall now wipes your ignore list (it does this on Aegis, too). git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9400 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
@@ -492,15 +492,18 @@ int mmo_char_tosql(int char_id, struct mmo_charstatus *p){
|
||||
if (!memitemdata_to_sql(mapitem, count, p->char_id,TABLE_CART))
|
||||
strcat(save_status, " cart");
|
||||
#ifdef TXT_SQL_CONVERT
|
||||
//Insert the barebones to then update the rest.
|
||||
{ //Insert the barebones to then update the rest.
|
||||
char t_name[NAME_LENGTH*2];
|
||||
jstrescapecpy(t_name, p->name);
|
||||
sprintf(tmp_sql, "REPLACE INTO `%s` (`account_id`, `char_num`, `name`) VALUES ('%d', '%d', '%s')",
|
||||
char_db, p->account_id, p->char_num, p->name);
|
||||
char_db, p->account_id, p->char_num, t_name);
|
||||
if(mysql_query(&mysql_handle, tmp_sql))
|
||||
{
|
||||
ShowSQL("DB error - %s\n",mysql_error(&mysql_handle));
|
||||
ShowDebug("at %s:%d - %s\n", __FILE__,__LINE__,tmp_sql);
|
||||
} else
|
||||
strcat(save_status, " creation");
|
||||
}
|
||||
#endif
|
||||
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user