diff options
author | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 12:35:57 +0000 |
---|---|---|
committer | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 12:35:57 +0000 |
commit | c905e2e19a9f913a4ea51b8a32dc97735a01b091 (patch) | |
tree | ee268e1dc482f4ae0a9ebd2cf5142a4873798bc4 /src/map/chrif.c | |
parent | 053eaa2d289853af24a28bc82e08ffcb74cbaf24 (diff) | |
download | hercules-c905e2e19a9f913a4ea51b8a32dc97735a01b091.tar.gz hercules-c905e2e19a9f913a4ea51b8a32dc97735a01b091.tar.bz2 hercules-c905e2e19a9f913a4ea51b8a32dc97735a01b091.tar.xz hercules-c905e2e19a9f913a4ea51b8a32dc97735a01b091.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@157 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r-- | src/map/chrif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 2a5f35a37..876c71758 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -419,11 +419,11 @@ int chrif_char_ask_name(int id, char * character_name, short operation_type, int *------------------------------------------
*/
int chrif_changesex(int id, int sex) {
- WFIFOW(char_fd,0) = 0x2b0c;
+ WFIFOW(char_fd,0) = 0x3000;
WFIFOW(char_fd,2) = 9;
WFIFOL(char_fd,4) = id;
WFIFOB(char_fd,8) = sex;
- printf("chrif : sended 0x2b0c\n");
+ printf("chrif : sent 0x3000(changesex)\n");
WFIFOSET(char_fd,9);
return 0;
}
|