diff --git a/conf/inter_athena.conf b/conf/inter_athena.conf index d814f32698..e60be22ef1 100644 --- a/conf/inter_athena.conf +++ b/conf/inter_athena.conf @@ -81,8 +81,6 @@ mysql_reconnect_count: 1 // Login Database Tables login_server_account_db: login ipban_table: ipbanlist - -// Shared global_acc_reg_num_table: global_acc_reg_num global_acc_reg_str_table: global_acc_reg_str diff --git a/src/char/char.cpp b/src/char/char.cpp index e33389e8a4..721593acc5 100644 --- a/src/char/char.cpp +++ b/src/char/char.cpp @@ -2340,12 +2340,12 @@ bool char_checkdb(void){ Sql_ShowDebug(sql_handle); return false; } - //checking global_acc_reg_str_table + //checking acc_reg_str_table if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.acc_reg_str_table) ) { Sql_ShowDebug(sql_handle); return false; } - //checking global_acc_reg_num_table + //checking acc_reg_num_table if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.acc_reg_num_table) ) { Sql_ShowDebug(sql_handle); return false;