diff options
author | shennetsind <ind@henn.et> | 2013-12-13 19:10:19 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-12-13 19:10:19 -0200 |
commit | 5c4f7b9047ff14018b7c46bf1ead71765d1ff869 (patch) | |
tree | 28a0b2e9c84c3a63c68f26b0b6fa8c542c87fd97 /src | |
parent | c9d40ca1cea0765ac5077885ccfaaa05db27dc02 (diff) | |
download | hercules-5c4f7b9047ff14018b7c46bf1ead71765d1ff869.tar.gz hercules-5c4f7b9047ff14018b7c46bf1ead71765d1ff869.tar.bz2 hercules-5c4f7b9047ff14018b7c46bf1ead71765d1ff869.tar.xz hercules-5c4f7b9047ff14018b7c46bf1ead71765d1ff869.zip |
Follow up b7171479
Fixed couple intif.c interface members being called outside the interface
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/intif.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 75ca714c9..4cfcc3f91 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -192,7 +192,7 @@ int intif_main_message(struct map_session_data* sd, const char* message) snprintf( output, sizeof(output), msg_txt(386), sd->status.name, message ); // send the message using the inter-server broadcast service - intif_broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 ); + intif->broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 ); // log the chat message logs->chat( LOG_CHAT_MAINCHAT, 0, sd->status.char_id, sd->status.account_id, mapindex_id2name(sd->mapindex), sd->bl.x, sd->bl.y, NULL, message ); @@ -1559,7 +1559,7 @@ void intif_parse_MailDelete(int fd) { } if( sd->mail.inbox.full ) - intif_Mail_requestinbox(sd->status.char_id, 1); // Free space is available for new mails + intif->Mail_requestinbox(sd->status.char_id, 1); // Free space is available for new mails } clif->mail_delete(sd->fd, mail_id, failed); @@ -1600,7 +1600,7 @@ void intif_parse_MailReturn(int fd) { } if( sd->mail.inbox.full ) - intif_Mail_requestinbox(sd->status.char_id, 1); // Free space is available for new mails + intif->Mail_requestinbox(sd->status.char_id, 1); // Free space is available for new mails } clif->mail_return(sd->fd, mail_id, fail); @@ -1797,7 +1797,7 @@ void intif_parse_AuctionClose(int fd) { if( result == 0 ) { // FIXME: Leeching off a parse function clif->pAuction_cancelreg(fd, sd); - intif_Auction_requestlist(sd->status.char_id, 6, 0, "", 1); + intif->Auction_requestlist(sd->status.char_id, 6, 0, "", 1); } } @@ -1834,7 +1834,7 @@ void intif_parse_AuctionBid(int fd) { } if( result == 1 ) { // To update the list, display your buy list clif->pAuction_cancelreg(fd, sd); - intif_Auction_requestlist(sd->status.char_id, 7, 0, "", 1); + intif->Auction_requestlist(sd->status.char_id, 7, 0, "", 1); } } |