summaryrefslogtreecommitdiff
path: root/src/char/inter.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-08 12:34:30 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-15 11:47:29 +0300
commit7e6df4619270cbec689f4d6d73c5fc0498c2ed18 (patch)
tree627a223f0a29c392dd0c7a17977032198dce4155 /src/char/inter.c
parent72427289b387df3394eeadf629d3510f60742970 (diff)
downloadhercules-7e6df4619270cbec689f4d6d73c5fc0498c2ed18.tar.gz
hercules-7e6df4619270cbec689f4d6d73c5fc0498c2ed18.tar.bz2
hercules-7e6df4619270cbec689f4d6d73c5fc0498c2ed18.tar.xz
hercules-7e6df4619270cbec689f4d6d73c5fc0498c2ed18.zip
Add most functions from int_mercenary.c to interfaces.
Diffstat (limited to 'src/char/inter.c')
-rw-r--r--src/char/inter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/char/inter.c b/src/char/inter.c
index 3f770efa4..869d6928a 100644
--- a/src/char/inter.c
+++ b/src/char/inter.c
@@ -1031,7 +1031,7 @@ int inter_init_sql(const char *file)
inter_party_sql_init();
inter_pet_sql_init();
inter_homunculus->sql_init();
- inter_mercenary_sql_init();
+ inter_mercenary->sql_init();
inter_elemental->sql_init();
inter_mail->sql_init();
inter_auction->sql_init();
@@ -1051,7 +1051,7 @@ void inter_final(void)
inter_party_sql_final();
inter_pet_sql_final();
inter_homunculus->sql_final();
- inter_mercenary_sql_final();
+ inter_mercenary->sql_final();
inter_elemental->sql_final();
inter_mail->sql_final();
inter_auction->sql_final();
@@ -1458,7 +1458,7 @@ int inter_parse_frommap(int fd)
|| inter_storage_parse_frommap(fd)
|| inter_pet_parse_frommap(fd)
|| inter_homunculus->parse_frommap(fd)
- || inter_mercenary_parse_frommap(fd)
+ || inter_mercenary->parse_frommap(fd)
|| inter_elemental->parse_frommap(fd)
|| inter_mail->parse_frommap(fd)
|| inter_auction->parse_frommap(fd)