diff options
author | Haru <haru@dotalux.com> | 2018-11-13 18:25:39 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-11-13 18:25:39 +0100 |
commit | 7c0e13d5eb5385d00f775e692ecc36f7d089615f (patch) | |
tree | 58e0118f0dd3a200a96ca1fbb2cc79ef5735b22e /src/map/atcommand.c | |
parent | d036c82b2080426c03d26f4d7c4015eab1fe1aed (diff) | |
download | hercules-7c0e13d5eb5385d00f775e692ecc36f7d089615f.tar.gz hercules-7c0e13d5eb5385d00f775e692ecc36f7d089615f.tar.bz2 hercules-7c0e13d5eb5385d00f775e692ecc36f7d089615f.tar.xz hercules-7c0e13d5eb5385d00f775e692ecc36f7d089615f.zip |
Remove a duplicate output line from the help message for the channel atcommand
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index f46ce0362..50df43266 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8992,9 +8992,7 @@ static void atcommand_channel_help(int fd, const char *command, bool can_create) clif->message(fd, msg_fd(fd,1428));// - binds global chat to <channel name>, making anything you type in global be sent to the channel safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1429),command);// -- %s unbind clif->message(fd, atcmd_output); - clif->message(fd, msg_fd(fd,1430));// - unbinds your global chat from its attached channel (if binded) - safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1429),command);// -- %s unbind - clif->message(fd, atcmd_output); + clif->message(fd, msg_fd(fd,1430));// - unbinds your global chat from its attached channel (if bound) if( can_create ) { safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1456),command);// -- %s ban <channel name> <character name> clif->message(fd, atcmd_output); |