diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index e10b2f5..4d3160c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -79,7 +79,7 @@ void eclif_charnameack(int *fdPtr, struct block_list *bl) struct map_session_data* sd = (struct map_session_data*)session[fd]->session_data; const char *tr = lang_pctrans(((TBL_NPC*)bl)->name, sd); const int trLen = strlen(tr); - const int len = 8 + trLen + 1; + const int len = 8 + trLen; // if no recipient specified just update nearby clients if (fd == 0) { |