forked from KolibriOS/kolibrios
IRCC: when typing /nick without parameters, echo nickname to the screen.
git-svn-id: svn://kolibrios.org@4981 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
7dd994b4b2
commit
8234827037
@ -283,7 +283,7 @@ quit_server:
|
|||||||
cmd_usr_nick:
|
cmd_usr_nick:
|
||||||
|
|
||||||
cmp [edit1.size], 5
|
cmp [edit1.size], 5
|
||||||
je .dontsend
|
je .justprint
|
||||||
cmp byte[usercommand+5], ' '
|
cmp byte[usercommand+5], ' '
|
||||||
jne .fail
|
jne .fail
|
||||||
cmp [socketnum], 0
|
cmp [socketnum], 0
|
||||||
@ -297,7 +297,6 @@ cmd_usr_nick:
|
|||||||
mcall send, [socketnum], usercommand+1, , 0
|
mcall send, [socketnum], usercommand+1, , 0
|
||||||
|
|
||||||
.fail:
|
.fail:
|
||||||
|
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; We arent logged in yet, directly change user_nick field and print notification to user.
|
; We arent logged in yet, directly change user_nick field and print notification to user.
|
||||||
@ -316,6 +315,7 @@ cmd_usr_nick:
|
|||||||
xor al, al
|
xor al, al
|
||||||
stosb
|
stosb
|
||||||
|
|
||||||
|
.justprint:
|
||||||
mov esi, str_nickchange
|
mov esi, str_nickchange
|
||||||
call print_asciiz
|
call print_asciiz
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user