summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
author(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-05 09:38:27 +0000
committer(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-05 09:38:27 +0000
commit3eb666be67a0a786ae11180570b9f08a098c453c (patch)
tree5720cd5c060d906cec7a45ebb6659208fff4cdf1 /src/map/clif.c
parentd4a0749cd9240f7071dda6fc5070a27ef26fdb0e (diff)
downloadhercules-3eb666be67a0a786ae11180570b9f08a098c453c.tar.gz
hercules-3eb666be67a0a786ae11180570b9f08a098c453c.tar.bz2
hercules-3eb666be67a0a786ae11180570b9f08a098c453c.tar.xz
hercules-3eb666be67a0a786ae11180570b9f08a098c453c.zip
* Updated Sharp Shooting AoE code
* Tidied up explicit typecasts in status_get_max_hp * Non-MVP / miniboss summoned monsters should give exp * Fixed a typo that was blocking packet version 5 clients (628sak) from logging in git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1042 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 6ce1fc9c6..16c3b4589 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -10662,7 +10662,7 @@ static int clif_parse(int fd) {
}
// check if version is accepted
- if (packet_ver <= 5 || // reject really old client versions
+ if (packet_ver < 5 || // reject really old client versions
(packet_ver <= 9 && (battle_config.packet_ver_flag & 1) == 0) || // older than 6sept04
(packet_ver == 10 && (battle_config.packet_ver_flag & 2) == 0) ||
(packet_ver == 11 && (battle_config.packet_ver_flag & 4) == 0) ||