Fix boolean

This commit is contained in:
Alex 2020-08-01 16:22:00 +02:00
parent 2fb9b7c589
commit 146a011032
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ IRC_Message* Assm_cmd_USER(char* user, char* realname, int modes)
imassm_mesg.args[0] = user;
imassm_mesg.args[1] = local_mode;
imassm_mesg.args[2] = RESERVED;
imassm_mesg.trailing = realname;
imassm_mesg.args[3] = realname;
imassm_mesg.trailing = true;
imassm_mesg.cmd = USER;
return &imassm_mesg;
}