Quote:
Originally Posted by fysiks
PHP Code:
if ( !containi( szMap , "jb" ) )
will return true if and only if "jb" is the first two letters in the mapname.
|
You've found a bug in containi, not my logic.
Here's a fix
PHP Code:
Change
if ( !containi( szMap , "jb" ) )
to
if ( strfind( szMap , "jb" ) == -1 )
__________________