diff options
author | Haru <haru@dotalux.com> | 2018-02-10 03:09:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-10 03:09:33 +0100 |
commit | c653d967508c194133d64e0c28fcc3dc0665cd77 (patch) | |
tree | b4297f68017af291c2def0d27bd01eb87a7b09c7 /src/map/intif.c | |
parent | 6f85e399942facc69555d078c82588f95b198711 (diff) | |
parent | 40cdf84bb3ab0801ff1e000eeab6adf87cb7ac50 (diff) | |
download | hercules-c653d967508c194133d64e0c28fcc3dc0665cd77.tar.gz hercules-c653d967508c194133d64e0c28fcc3dc0665cd77.tar.bz2 hercules-c653d967508c194133d64e0c28fcc3dc0665cd77.tar.xz hercules-c653d967508c194133d64e0c28fcc3dc0665cd77.zip |
Merge pull request #1964 from MishimaHaruna/clanfix
Clanfix
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index c933ceb15..0e5cd3db2 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -751,7 +751,7 @@ int intif_party_leaderchange(int party_id,int account_id,int char_id) /** * Request clan member count - * + * * @param clan_id Id of the clan to have members counted * @param kick_interval Interval of the inactivity kick */ @@ -759,7 +759,7 @@ int intif_clan_membercount(int clan_id, int kick_interval) { if (intif->CheckForCharServer() || clan_id == 0 || kick_interval <= 0) return 0; - + WFIFOHEAD(inter_fd, 10); WFIFOW(inter_fd, 0) = 0x3044; WFIFOL(inter_fd, 2) = clan_id; @@ -791,7 +791,7 @@ void intif_parse_RecvClanMemberAction(int fd) ShowError("intif_parse_RecvClanMemberAction: Received invalid clan_id '%d'\n", clan_id); return; } - + if (count < 0) { ShowError("intif_parse_RecvClanMemberAction: Received invalid member count value '%d'\n", count); return; @@ -2599,10 +2599,10 @@ void intif_parse_RodexNotifications(int fd) /// Updates a mail /// flag: -/// 0 - user Read -/// 1 - user got Zeny -/// 2 - user got Items -/// 3 - delete +/// 0 - user Read +/// 1 - user got Zeny +/// 2 - user got Items +/// 3 - delete int intif_rodex_updatemail(int64 mail_id, int8 flag) { if (intif->CheckForCharServer()) |