diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-12 18:02:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-12 18:04:42 +0300 |
commit | 2e17eefe3542afd37a4c103a4c943bae553bb169 (patch) | |
tree | fe2fd43b7bd8d3a308469747844f36bfec07f08a | |
parent | 59a3f0358829144b457b85a604355e070b00e87e (diff) | |
download | serverdata-2e17eefe3542afd37a4c103a4c943bae553bb169.tar.gz serverdata-2e17eefe3542afd37a4c103a4c943bae553bb169.tar.bz2 serverdata-2e17eefe3542afd37a4c103a4c943bae553bb169.tar.xz serverdata-2e17eefe3542afd37a4c103a4c943bae553bb169.zip |
Show old version message for client versions < 12 (was < 8).s20160912
-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 003a961a..e68948b3 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 > 7) return; + if (ClientVersion > 11) return; mesn "Narrator"; mes col("Warning.", 9); |