Minor performance improvement on script function is_function -- replaced strdb_get with strdb_exists since we don't use the data at all.

Modified get_revision to return the revision number rather than it's string, when revision is not known by the server it now returns -1.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15969 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2012-04-25 13:42:49 +00:00
parent 9d14415b75
commit 147c6ddbad

View File

@ -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;
}