Page 1 of 1

Bug in targetAny.src

Posted: Fri Sep 15, 2006 4:15 pm
by Lagoon
097\Distro\pkg\mobiles\brainAI\scripts\shouldWatch\targetAny.src
Line 16

Code: Select all

	if ( mobile.cmdlevel >= 2 )
		return 1;
	endif
should be

Code: Select all

	if ( mobile.cmdlevel < 2 )
		return 1;
	endif
or

Code: Select all

	if ( mobile.cmdlevel >= 2 )
		return 0;
	endif
	return 1;

Posted: Fri Sep 15, 2006 6:46 pm
by MuadDib
The phrase pedantic bastard comes to mind for some reason? hehe

Gotta love some of the log notes you see in the svn. They keep us sane lol

Gotta love it when people actually pay attention to the code and report stuff, instead of just fixing it and going on for their own use :)

Posted: Sun Sep 17, 2006 1:11 am
by Lagoon
yeah, now my pedanticness if written in fire letters in the SVN logs for those who will come, you made me immortal :mrgreen: