diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-05 23:30:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-07 22:40:03 +0300 |
commit | 8e2f7d6b882b0e1d123d6cd91041d8985991faf7 (patch) | |
tree | c200f8d91b6b216a6743c93898fa5b298514cee6 /src/map/atcommand.c | |
parent | 2b6e590b9cc8211c623c20242efc4dac9e313b0b (diff) | |
download | hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.gz hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.bz2 hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.xz hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.zip |
Rename clif_charnameack into clif_blname_ack
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index a9f63fe13..a9bbff7bd 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7669,9 +7669,9 @@ ACMD(fakename) if (sd->fakename[0]) { sd->fakename[0] = '\0'; - clif->charnameack(0, &sd->bl); + clif->blname_ack(0, &sd->bl); if( sd->disguise ) - clif->charnameack(sd->fd, &sd->bl); + clif->blname_ack(sd->fd, &sd->bl); clif->message(sd->fd, msg_fd(fd,1307)); // Returned to real name. return true; } @@ -7687,9 +7687,9 @@ ACMD(fakename) } safestrncpy(sd->fakename, message, sizeof(sd->fakename)); - clif->charnameack(0, &sd->bl); + clif->blname_ack(0, &sd->bl); if (sd->disguise) // Another packet should be sent so the client updates the name for sd - clif->charnameack(sd->fd, &sd->bl); + clif->blname_ack(sd->fd, &sd->bl); clif->message(sd->fd, msg_fd(fd,1310)); // Fake name enabled. return true; |