diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 1a38ebe..d4cedc6 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -5440,8 +5440,9 @@ void clif_parse(int fd) { // too small a packet disconnect session[fd]->eof = 1; } - if (RFIFOW(fd, 0) != 0x72) - { // first packet not auth, disconnect + if (RFIFOW(fd, 0) != 0x72 && RFIFOW(fd, 0) != 0x7530) + { + // first packet must be auth or finger session[fd]->eof = 1; } } |