Roaming bug in roaming.cxx

NOTE: this is an informal bug post place ONLY. Real bugs should be posted on GitHub
Post Reply
User avatar
War Pig
Private First Class
Private First Class
Posts: 46
Joined: Sat Feb 16, 2008 11:38 pm

Roaming bug in roaming.cxx

Post by War Pig »

Beardy found this one:

Once there is only one team flag in play, roaming observers cannot follow it. In roaming.cxx:

Code: Select all

for( i=1 ; i < maxflags ; i++ )
should read

Code: Select all

for( i=1 ; i <= maxflags ; i++ )
WP
<life> <!-- insert something interesting here --> </life>
User avatar
JeffM
Staff Sergeant
Staff Sergeant
Posts: 5196
Joined: Fri Dec 13, 2002 4:11 am

Re: Roaming bug in roaming.cxx

Post by JeffM »

please submit the change as a patch to source forge.
ImageJeffM
User avatar
Bullet Catcher
Captain
Captain
Posts: 564
Joined: Sat Dec 23, 2006 7:56 am
Location: Escondido, California

Re: Roaming bug in roaming.cxx

Post by Bullet Catcher »

Fixed in Subversion revision 22103. Thanks, War Pig.
Post Reply