diff options
-rw-r--r-- | src/map/clif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index d0fd96111..6a4094286 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7099,7 +7099,6 @@ void clif_parse_WantToConnection(int fd, struct map_session_data *sd) if ((old_sd = map_id2sd(account_id)) != NULL) {
clif_authfail_fd(fd, 2); // same id
clif_authfail_fd(old_sd->fd, 2); // same id
- printf("clif_parse_WantToConnection: Double connection for account %d (sessions: #%d (new) and #%d (old)).\n", account_id, fd, old_sd->fd);
} else {
sd = session[fd]->session_data = (struct map_session_data*)aCalloc(1, sizeof(struct map_session_data));
sd->fd = fd;
|