summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorMatheus Macabu <mkbu95@gmail.com>2013-07-11 13:20:44 -0300
committerMatheus Macabu <mkbu95@gmail.com>2013-07-11 13:20:44 -0300
commit8cd740d2c77f69216f2c7d10f77773d30104ae83 (patch)
tree9ebd292541812b03fb3d3142c356f2a49c93443a /src/map/clif.c
parent94d75f867a6dae10f05a8c2399a301c66b53bce3 (diff)
downloadhercules-8cd740d2c77f69216f2c7d10f77773d30104ae83.tar.gz
hercules-8cd740d2c77f69216f2c7d10f77773d30104ae83.tar.bz2
hercules-8cd740d2c77f69216f2c7d10f77773d30104ae83.tar.xz
hercules-8cd740d2c77f69216f2c7d10f77773d30104ae83.zip
Fixed a little type (follow up to 94d75f8), also defaulted to 0 mute system.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
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);
}