diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-08 20:54:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 11:47:29 +0300 |
commit | 1c3205f761b1894a7f2347f8ab1275f1791dbcbc (patch) | |
tree | 1d845ee0d238f1bd7ea8dc693a08dc7552854744 /src/char/inter.c | |
parent | a181f75908d065293685d5adc7c90726fa29c064 (diff) | |
download | hercules-1c3205f761b1894a7f2347f8ab1275f1791dbcbc.tar.gz hercules-1c3205f761b1894a7f2347f8ab1275f1791dbcbc.tar.bz2 hercules-1c3205f761b1894a7f2347f8ab1275f1791dbcbc.tar.xz hercules-1c3205f761b1894a7f2347f8ab1275f1791dbcbc.zip |
Add most functions from int_storage.c to interfaces.
Diffstat (limited to 'src/char/inter.c')
-rw-r--r-- | src/char/inter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/char/inter.c b/src/char/inter.c index db5dc822c..ad624ff73 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -1027,7 +1027,7 @@ int inter_init_sql(const char *file) wis_db = idb_alloc(DB_OPT_RELEASE_DATA); inter_guild->sql_init(); - inter_storage_sql_init(); + inter_storage->sql_init(); inter_party->sql_init(); inter_pet->sql_init(); inter_homunculus->sql_init(); @@ -1047,7 +1047,7 @@ void inter_final(void) wis_db->destroy(wis_db, NULL); inter_guild->sql_final(); - inter_storage_sql_final(); + inter_storage->sql_final(); inter_party->sql_final(); inter_pet->sql_final(); inter_homunculus->sql_final(); @@ -1455,7 +1455,7 @@ int inter_parse_frommap(int fd) default: if( inter_party->parse_frommap(fd) || inter_guild->parse_frommap(fd) - || inter_storage_parse_frommap(fd) + || inter_storage->parse_frommap(fd) || inter_pet->parse_frommap(fd) || inter_homunculus->parse_frommap(fd) || inter_mercenary->parse_frommap(fd) |