- Merged mail system to Stable. Need a second check... please wait.
- No packet added until everything is done. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12287 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
021af17a50
commit
fee18c4efb
@ -60,6 +60,7 @@ char guild_storage_db[256] = "guild_storage";
|
||||
char party_db[256] = "party";
|
||||
char pet_db[256] = "pet";
|
||||
char mail_db[256] = "mail"; // MAIL SYSTEM
|
||||
char auction_db[256] = "auction"; // Auctions System
|
||||
char friend_db[256] = "friends";
|
||||
char hotkey_db[256] = "hotkey";
|
||||
|
||||
@ -3598,6 +3599,8 @@ void sql_config_read(const char* cfgName)
|
||||
strcpy(pet_db,w2);
|
||||
else if(!strcmpi(w1,"mail_db"))
|
||||
strcpy(mail_db,w2);
|
||||
else if(!strcmpi(w1,"auction_db"))
|
||||
strcpy(auction_db,w2);
|
||||
else if(!strcmpi(w1,"friend_db"))
|
||||
strcpy(friend_db,w2);
|
||||
else if(!strcmpi(w1,"hotkey_db"))
|
||||
|
@ -58,6 +58,7 @@ extern char guild_storage_db[256];
|
||||
extern char party_db[256];
|
||||
extern char pet_db[256];
|
||||
extern char mail_db[256];
|
||||
extern char auction_db[256];
|
||||
|
||||
extern int db_use_sqldbs; // added for sql item_db read for char server [Valaris]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user