diff --git a/docs/help/in/rping.in b/docs/help/in/rping.in deleted file mode 100644 index 7f3d72b8..00000000 --- a/docs/help/in/rping.in +++ /dev/null @@ -1,12 +0,0 @@ - -@SYNTAX:rping@ - -IRC Operator command, not available on all networks. - -This command works like the PING command (CTCP PING), except -it is used on a server instead of a client. As with PING, it -is used to test the relative distance another server is from -you across the irc network. - -See also: OPER - diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c index 0edbfa01..71828022 100644 --- a/src/irc/core/irc-commands.c +++ b/src/irc/core/irc-commands.c @@ -1014,8 +1014,6 @@ void irc_commands_init(void) command_bind_irc("oper", NULL, (SIGNAL_FUNC) cmd_oper); /* SYNTAX: RESTART */ command_bind_irc("restart", NULL, (SIGNAL_FUNC) command_self); - /* SYNTAX: RPING */ - command_bind_irc("rping", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: SQUIT | */ command_bind_irc("squit", NULL, (SIGNAL_FUNC) command_2self); /* SYNTAX: UPING */ @@ -1088,7 +1086,6 @@ void irc_commands_deinit(void) command_unbind("hash", (SIGNAL_FUNC) command_self); command_unbind("oper", (SIGNAL_FUNC) cmd_oper); command_unbind("restart", (SIGNAL_FUNC) command_self); - command_unbind("rping", (SIGNAL_FUNC) command_self); command_unbind("squit", (SIGNAL_FUNC) command_2self); command_unbind("uping", (SIGNAL_FUNC) command_self); command_unbind("userhost", (SIGNAL_FUNC) command_self);