diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-20 00:17:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-20 00:17:54 +0300 |
commit | 70bea71a0907decf83c0c882001fd3d22c4322ad (patch) | |
tree | 44ad7ad0bcc0a105c98884d87c5706c7be9c5d7e | |
parent | 8bd2e025cca547a581de5f44b22e283d8d046915 (diff) | |
download | evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.gz evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.bz2 evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.xz evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.zip |
Drop support for client protocol version 6 (Feb 17 2015).
-rw-r--r-- | src/elogin/parse.c | 4 | ||||
-rw-r--r-- | src/emap/script_buildins.c | 12 |
2 files changed, 4 insertions, 12 deletions
diff --git a/src/elogin/parse.c b/src/elogin/parse.c index 0a42ecd..282944d 100644 --- a/src/elogin/parse.c +++ b/src/elogin/parse.c @@ -34,7 +34,7 @@ void login_parse_version(int fd) clientVersion = RFIFOL(fd, 2); - if (clientVersion < 6) + if (clientVersion < 7) { lclif->login_error(fd, 5); return; @@ -58,7 +58,7 @@ bool elogin_client_login_pre(int *fdPtr, char username[NAME_LENGTH]; safestrncpy(username, RFIFOP(fd, 6), NAME_LENGTH); int len = (int)safestrnlen(username, NAME_LENGTH); - if (clientVersion < 6) + if (clientVersion < 7) { lclif->login_error(fd, 5); hookStop(); diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c index 2e47c77..3775814 100644 --- a/src/emap/script_buildins.c +++ b/src/emap/script_buildins.c @@ -241,7 +241,7 @@ BUILDIN(getItemLink) if (data) version = data->clientVersion; - if (i_data && version >= 7) + if (i_data) { if (!script_hasdata(st, 3)) { @@ -264,10 +264,6 @@ BUILDIN(getItemLink) strcat(item_name, "|@@]"); } } - else if (i_data) - { - sprintf(item_name, "[@@%u|%s@@]", (unsigned)i_data->nameid, i_data->jname); - } else if (item_id > 0) { sprintf(item_name, "[@@%u|Unknown Item@@]", (unsigned)item_id); @@ -1856,7 +1852,7 @@ BUILDIN(getInvIndexLink) if (data) version = data->clientVersion; - if (i_data && version >= 7) + if (i_data) { const struct item *const item = &sd->status.inventory[index]; if (item->card[0] == CARD0_PET || @@ -1878,10 +1874,6 @@ BUILDIN(getInvIndexLink) strcat(item_name, "|@@]"); } } - else if (i_data) - { - sprintf(item_name, "[@@%u|%s@@]", (unsigned)i_data->nameid, i_data->jname); - } else if (item_id > 0) { sprintf(item_name, "[@@%u|Unknown Item@@]", (unsigned)item_id); |