diff options
author | Haru <haru@dotalux.com> | 2014-01-12 19:02:37 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-01-12 19:08:40 +0100 |
commit | cd1d0867a006f6a6eb4330142ad3006d37e20684 (patch) | |
tree | f84f6840a4170fe606af5af6e30ed62a3a3225a4 /src/map/atcommand.c | |
parent | fbd5113e258bd511f948d3d583845d89ac8ec216 (diff) | |
download | hercules-cd1d0867a006f6a6eb4330142ad3006d37e20684.tar.gz hercules-cd1d0867a006f6a6eb4330142ad3006d37e20684.tar.bz2 hercules-cd1d0867a006f6a6eb4330142ad3006d37e20684.tar.xz hercules-cd1d0867a006f6a6eb4330142ad3006d37e20684.zip |
Changed some void* to the correct data types where applicable
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index d4b6c2382..b2d486520 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8647,7 +8647,7 @@ ACMD(join) { } else if( hChSys.ally && sd->status.guild_id && strcmpi(name + 1, hChSys.ally_name) == 0 ) { struct guild *g = sd->guild; if( !g ) return false;/* unlikely, but we wont let it crash anyway. */ - channel = (struct hChSysCh *)g->channel; + channel = g->channel; } else if( !( channel = strdb_get(clif->channel_db, name + 1) ) ) { sprintf(atcmd_output, msg_txt(1400),name,command); // Unknown Channel '%s' (usage: %s <#channel_name>) clif->message(fd, atcmd_output); @@ -8691,8 +8691,8 @@ ACMD(join) { int i; for (i = 0; i < MAX_GUILDALLIANCE; i++) { if( g->alliance[i].opposition == 0 && g->alliance[i].guild_id && (sg = guild->search(g->alliance[i].guild_id) ) ) { - if( !(((struct hChSysCh*)sg->channel)->banned && idb_exists(((struct hChSysCh*)sg->channel)->banned, sd->status.account_id))) { - clif->chsys_join((struct hChSysCh *)sg->channel,sd); + if( !(sg->channel->banned && idb_exists(sg->channel->banned, sd->status.account_id))) { + clif->chsys_join(sg->channel,sd); } } } @@ -8822,7 +8822,7 @@ ACMD(channel) { if( hChSys.ally && sd->status.guild_id ) { struct guild *g = sd->guild; if( !g ) { dbi_destroy(iter); return false; } - sprintf(atcmd_output, msg_txt(1409), hChSys.ally_name, db_size(((struct hChSysCh *)g->channel)->users));// - #%s ( %d users ) + sprintf(atcmd_output, msg_txt(1409), hChSys.ally_name, db_size(g->channel->users));// - #%s ( %d users ) clif->message(fd, atcmd_output); } for(channel = dbi_first(iter); dbi_exists(iter); channel = dbi_next(iter)) { |