diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-19 23:58:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-19 23:58:08 +0300 |
commit | c94b16d11e20fbfecf6f69da057e63dfc0c2d312 (patch) | |
tree | 1ec92940643e7bd2a2a13f4d0841987e8c20672b /src/emap/clif.c | |
parent | 72d4d2df6918917a50c057fea3f5847f9e3750eb (diff) | |
download | evol-hercules-c94b16d11e20fbfecf6f69da057e63dfc0c2d312.tar.gz evol-hercules-c94b16d11e20fbfecf6f69da057e63dfc0c2d312.tar.bz2 evol-hercules-c94b16d11e20fbfecf6f69da057e63dfc0c2d312.tar.xz evol-hercules-c94b16d11e20fbfecf6f69da057e63dfc0c2d312.zip |
Drop support for client protocol version 4 (Jan 5 2015).
Diffstat (limited to 'src/emap/clif.c')
-rw-r--r-- | src/emap/clif.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/emap/clif.c b/src/emap/clif.c index 7d75a85..6adb50b 100644 --- a/src/emap/clif.c +++ b/src/emap/clif.c @@ -551,18 +551,6 @@ int eclif_send_actual_pre(int *fd, if (*len >= 2) { const int packet = RBUFW (buf, 0); - if (packet == 0xb0b) - { - struct SessionExt *data = session_get(*fd); - if (!data) - return 0; - if (data->clientVersion < 5) - { // not sending new packets to old clients -// ShowWarning("skip packet %d\n", packet); - hookStop(); - return 0; - } - } if (packet == 0x1d7) { struct SessionExt *data = session_get(*fd); |