summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-12 03:40:18 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-12 03:40:18 +0000
commit00b9732977d9bdc0708d21b0cfd4a5c1794176fc (patch)
tree008747ee87ac7b68da500bbd74bbb0ff5c914b2a /src/map/clif.c
parentdf465e487ceca690ecae9854b76693a3d9358fa4 (diff)
downloadhercules-00b9732977d9bdc0708d21b0cfd4a5c1794176fc.tar.gz
hercules-00b9732977d9bdc0708d21b0cfd4a5c1794176fc.tar.bz2
hercules-00b9732977d9bdc0708d21b0cfd4a5c1794176fc.tar.xz
hercules-00b9732977d9bdc0708d21b0cfd4a5c1794176fc.zip
- Fixed autotrading characters not being able to reconnect. Seams like I misunderstood how id_db and pc_db are used.
Ref: http://www.eathena.ws/board/index.php?showtopic=131873 git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9644 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 2e40bf7da..ddf14927d 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -8200,8 +8200,9 @@ void clif_parse_WantToConnection(int fd, TBL_PC* sd)
} else
{// packet version accepted
TBL_PC* old_sd;
+ struct block_list* bl;
- if( map_id2bl(account_id) != NULL )
+ if( (bl=map_id2bl(account_id)) != NULL && bl->type != BL_PC )
{// non-player object already has that id
ShowError("clif_parse_WantToConnection: a non-player object already has id %d, please increase the starting account number\n", account_id);
WFIFOHEAD(fd,packet_len(0x6a));