summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-11-13 18:25:39 +0100
committerHaru <haru@dotalux.com>2018-11-13 18:25:39 +0100
commit7c0e13d5eb5385d00f775e692ecc36f7d089615f (patch)
tree58e0118f0dd3a200a96ca1fbb2cc79ef5735b22e
parentd036c82b2080426c03d26f4d7c4015eab1fe1aed (diff)
downloadhercules-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>
-rw-r--r--src/map/atcommand.c4
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);