diff options
author | valaris <valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 18:29:31 +0000 |
---|---|---|
committer | valaris <valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 18:29:31 +0000 |
commit | f1357776b5dfc1ed8b6dcaf425fc5667b0d19a3a (patch) | |
tree | 20bf4e92dc9406c9a4f6aa48c2b20857b14603a0 /src/map | |
parent | 20f23fe252835290eec8796e368f6f1baff457a2 (diff) | |
download | hercules-f1357776b5dfc1ed8b6dcaf425fc5667b0d19a3a.tar.gz hercules-f1357776b5dfc1ed8b6dcaf425fc5667b0d19a3a.tar.bz2 hercules-f1357776b5dfc1ed8b6dcaf425fc5667b0d19a3a.tar.xz hercules-f1357776b5dfc1ed8b6dcaf425fc5667b0d19a3a.zip |
Removed double connection print statement.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@161 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-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;
|