Bug in targetAny.src
Posted: Fri Sep 15, 2006 4:15 pm
097\Distro\pkg\mobiles\brainAI\scripts\shouldWatch\targetAny.src
Line 16
should be
or
Line 16
Code: Select all
if ( mobile.cmdlevel >= 2 )
return 1;
endifCode: Select all
if ( mobile.cmdlevel < 2 )
return 1;
endifCode: Select all
if ( mobile.cmdlevel >= 2 )
return 0;
endif
return 1;