diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-07 00:32:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-07 00:32:37 +0300 |
commit | f11ce4d550812742498e3fbd2ad0f0180cb6727c (patch) | |
tree | 6278095414e2f79c5dac4205485f77d5126a9832 | |
parent | e435a2733447002254a1169e56d06fd75c1d26a4 (diff) | |
download | serverdata-f11ce4d550812742498e3fbd2ad0f0180cb6727c.tar.gz serverdata-f11ce4d550812742498e3fbd2ad0f0180cb6727c.tar.bz2 serverdata-f11ce4d550812742498e3fbd2ad0f0180cb6727c.tar.xz serverdata-f11ce4d550812742498e3fbd2ad0f0180cb6727c.zip |
fix getclientversion usage.
-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 340d4eb1..24d2dafe 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 (getclientversion("") > 4) return; + if (getclientversion() > 4) return; mesn "Narrator"; mes col("Warning.", 9); |