summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 14ee625f7..9fe8cd2e0 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -15843,7 +15843,7 @@ BUILDIN_FUNC(getargcount) {
BUILDIN_FUNC(is_function) {
const char* str = script_getstr(st,2);
- if( ((struct script_code*)strdb_get(userfunc_db, str)) != NULL )
+ if( strdb_exists(userfunc_db, str) )
script_pushint(st,1);
else
script_pushint(st,0);
@@ -15857,9 +15857,9 @@ BUILDIN_FUNC(get_revision) {
const char * revision;
if ( (revision = get_svn_revision()) != 0 )
- script_pushstrcopy(st,revision);
+ script_pushint(st,atoi(revision));
else
- script_pushconststr(st,"Unknown");
+ script_pushint(st,-1);//unknown
return 0;
}