diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-04-10 14:14:51 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-04-10 15:51:50 -0400 |
commit | fcf31a258f2925650cf51f15d0280c0efb67c6a2 (patch) | |
tree | d7959d448dcfa0f0ae34789845e2a6b9b778fdf1 /src/map/script-fun.cpp | |
parent | 3cda94665c73447b09338d6f219ef22b58f066bd (diff) | |
download | tmwa-fcf31a258f2925650cf51f15d0280c0efb67c6a2.tar.gz tmwa-fcf31a258f2925650cf51f15d0280c0efb67c6a2.tar.bz2 tmwa-fcf31a258f2925650cf51f15d0280c0efb67c6a2.tar.xz tmwa-fcf31a258f2925650cf51f15d0280c0efb67c6a2.zip |
consolidate client version handling
Diffstat (limited to 'src/map/script-fun.cpp')
-rw-r--r-- | src/map/script-fun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index 9014d2b..fe5a961 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -1161,7 +1161,7 @@ static void builtin_getversion(ScriptState *st) { dumb_ptr<map_session_data> sd = script_rid2sd(st);; - push_int<ScriptDataInt>(st->stack, sd->client_version); + push_int<ScriptDataInt>(st->stack, unwrap<ClientVersion>(sd->client_version)); } /*========================================== |