diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-20 02:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-20 02:52:02 +0300 |
commit | 5eb1bc31017d78fc120ae7a9e148302ec8a2473b (patch) | |
tree | 8e88a3285b78564a3159c31db5e52f315cdba6d7 /npc | |
parent | 1d2b06473ec19907bc8b979b39cc62259d24271d (diff) | |
download | serverdata-5eb1bc31017d78fc120ae7a9e148302ec8a2473b.tar.gz serverdata-5eb1bc31017d78fc120ae7a9e148302ec8a2473b.tar.bz2 serverdata-5eb1bc31017d78fc120ae7a9e148302ec8a2473b.tar.xz serverdata-5eb1bc31017d78fc120ae7a9e148302ec8a2473b.zip |
Show too old client messages for client protocol version < 21.
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 fd233d88..9d502be3 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 > 18) return; + if (ClientVersion > 20) return; mesn "Narrator"; mes col("Warning.", 9); |