- Removed char_nick2id from char-sql server as it's no longer needed.

- Fixed quitting the map server not properly saving the storage before deleting it.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7030 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2006-06-07 13:19:12 +00:00
parent 936830ab46
commit d3ffb31cc4
6 changed files with 13 additions and 27 deletions

View File

@@ -4398,20 +4398,3 @@ int char_married(int pl1,int pl2) {
else
return 0;
}
int char_nick2id (char *name) {
int char_id = 0;
sprintf (tmp_sql, "SELECT `char_id` FROM `%s` WHERE `name` = '%s'", char_db, 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);
}
sql_res = mysql_store_result (&mysql_handle);
sql_row = sql_res?mysql_fetch_row(sql_res):NULL;
if (sql_row)
char_id = atoi (sql_row[0]);
else
ShowError ("CHAR: nick2id Failed!\n");
if (sql_res) mysql_free_result (sql_res);
return char_id;
}