summaryrefslogtreecommitdiff
path: root/src/emap/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-20 01:28:58 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-20 01:28:58 +0300
commit4a5a1205ac1c570724574b1aed3d3902f1bdbc27 (patch)
tree2a0f05cf12ea7bb1fae8998b70c7c3ec950eda96 /src/emap/clif.c
parent32eac16e25d7e2024c959d10393e467927140706 (diff)
downloadevol-hercules-4a5a1205ac1c570724574b1aed3d3902f1bdbc27.tar.gz
evol-hercules-4a5a1205ac1c570724574b1aed3d3902f1bdbc27.tar.bz2
evol-hercules-4a5a1205ac1c570724574b1aed3d3902f1bdbc27.tar.xz
evol-hercules-4a5a1205ac1c570724574b1aed3d3902f1bdbc27.zip
Drop support for client protocol version 10 (Aug 16 2015).
Diffstat (limited to 'src/emap/clif.c')
-rw-r--r--src/emap/clif.c27
1 files changed, 3 insertions, 24 deletions
diff --git a/src/emap/clif.c b/src/emap/clif.c
index fefd4ea..36a3dc7 100644
--- a/src/emap/clif.c
+++ b/src/emap/clif.c
@@ -551,35 +551,14 @@ int eclif_send_actual_pre(int *fd,
if (*len >= 2)
{
const int packet = RBUFW (buf, 0);
- if (packet == 0x1d7)
+ if (packet == 0x1d7 ||
+ packet == 0x84b)
{
// not sending old packets to new clients
// probably useless
hookStop();
return 0;
}
- if (packet == 0x84b)
- {
- struct SessionExt *data = session_get(*fd);
- if (!data)
- return 0;
- if (data->clientVersion >= 10)
- { // not sending old packets to new clients
- hookStop();
- return 0;
- }
- }
- if (packet == 0xb19)
- {
- struct SessionExt *data = session_get(*fd);
- if (!data)
- return 0;
- if (data->clientVersion < 10)
- { // not sending new packets to old clients
- hookStop();
- return 0;
- }
- }
if (packet == 0x2dd)
{
struct SessionExt *data = session_get(*fd);
@@ -1318,7 +1297,7 @@ void eclif_getareachar_item_pre(struct map_session_data **sdPtr,
int fd = sd->fd;
struct SessionExt *data = session_get(fd);
- if (!data || data->clientVersion < 10)
+ if (!data)
return;
WFIFOHEAD(fd, 28);