diff options
| -rw-r--r-- | catgirl.1 | 2 | ||||
| -rw-r--r-- | command.c | 7 | 
2 files changed, 9 insertions, 0 deletions
| @@ -130,6 +130,8 @@ can be typed  Join a channel.  .It Ic /me Op Ar action  Send an action message. +.It Ic /nick Ar nick +Change nicknames.  .It Ic /notice Ar message  Send a notice.  .It Ic /quit Op Ar message @@ -69,6 +69,12 @@ static void commandQuit(size_t id, char *params) {  	set(&self.quit, (params ? params : "Goodbye"));  } +static void commandNick(size_t id, char *params) { +	(void)id; +	if (!params) return; +	ircFormat("NICK :%s\r\n", params); +} +  static void commandWindow(size_t id, char *params) {  	if (!params) return;  	if (isdigit(params[0])) { @@ -85,6 +91,7 @@ static const struct Handler {  } Commands[] = {  	{ "/join", commandJoin },  	{ "/me", commandMe }, +	{ "/nick", commandNick },  	{ "/notice", commandNotice },  	{ "/quit", commandQuit },  	{ "/quote", commandQuote }, | 
