diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-20 01:46:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-20 01:46:11 +0300 |
commit | bc3ce8a1f8d2f3f63be1cdce595250125233b271 (patch) | |
tree | 6989ab4fecda11ba8589bcb117fce1df4e3e2e1b /npc | |
parent | 579b7e590fd1142e7518cb76498e7330b39ae62b (diff) | |
download | serverdata-bc3ce8a1f8d2f3f63be1cdce595250125233b271.tar.gz serverdata-bc3ce8a1f8d2f3f63be1cdce595250125233b271.tar.bz2 serverdata-bc3ce8a1f8d2f3f63be1cdce595250125233b271.tar.xz serverdata-bc3ce8a1f8d2f3f63be1cdce595250125233b271.zip |
Show client too old warning if client version < 24.s20180614
Diffstat (limited to 'npc')
-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 9d502be3..93a6b371 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 > 20) return; + if (ClientVersion > 23) return; mesn "Narrator"; mes col("Warning.", 9); |