diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-26 01:38:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-26 01:38:42 +0300 |
commit | bda1cff35fcb3b7d042f05835f2c5d2dc9d063fb (patch) | |
tree | 5405dc6a6640bac4316ee6da3131710d6ba3512f | |
parent | 7fc4eb930c7c86f06f6d1499df2bfc5fcb42859a (diff) | |
download | serverdata-bda1cff35fcb3b7d042f05835f2c5d2dc9d063fb.tar.gz serverdata-bda1cff35fcb3b7d042f05835f2c5d2dc9d063fb.tar.bz2 serverdata-bda1cff35fcb3b7d042f05835f2c5d2dc9d063fb.tar.xz serverdata-bda1cff35fcb3b7d042f05835f2c5d2dc9d063fb.zip |
Change minimal correct client version to 2.
-rw-r--r-- | npc/functions/clientversion.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 2c7b50bc2..bd539dd47 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -5,7 +5,7 @@ // Function checking the client version and reports if it is too old. function script CheckClientVersion { - if (ClientVersion > 4) return; + if (ClientVersion > 1) return; mesn "Narrator"; mes col("Warning.", 9); |