Quellcode durchsuchen

Removed double connection print statement.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@161 54d463be-8e91-2dee-dedb-b68131a5f0ec
valaris vor 20 Jahren
Ursprung
Commit
8512b78e6d
1 geänderte Dateien mit 0 neuen und 1 gelöschten Zeilen
  1. 0 1
      src/map/clif.c

+ 0 - 1
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;