diff options
-rw-r--r-- | conf/battle/client.conf | 2 | ||||
-rw-r--r-- | src/map/clif.c | 2 | ||||
-rw-r--r-- | src/map/mail.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/conf/battle/client.conf b/conf/battle/client.conf index c832163be..eae8aad3b 100644 --- a/conf/battle/client.conf +++ b/conf/battle/client.conf @@ -117,4 +117,4 @@ client_sort_storage: no // Note: Do not enable this, if you enabled commands for players, // because the client sees multiple commands in succession as spam. // Default: 0 (means disabled) -client_accept_chatdori: 1 +client_accept_chatdori: 0 diff --git a/src/map/clif.c b/src/map/clif.c index 18aa476ff..f557271be 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11861,7 +11861,7 @@ void clif_parse_ResetChar(int fd, struct map_session_data *sd) { if( RFIFOW(fd,2) ) sprintf(cmd,"%cskreset",atcommand->at_symbol); else - sprintf(cmd,"%streset",atcommand->at_symbol); + sprintf(cmd,"%cstreset",atcommand->at_symbol); atcommand->parse(fd, sd, cmd, 1); } diff --git a/src/map/mail.c b/src/map/mail.c index 021a51cde..93304bac0 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -200,4 +200,4 @@ void mail_defaults(void) mail->openmail = mail_openmail; mail->deliveryfail = mail_deliveryfail; mail->invalid_operation = mail_invalid_operation; -}
\ No newline at end of file +} |