Britbot
void Britbot.Group.Update ( ) [inline]

Does updates for the group when changed.

Definition at line 713 of file Group.cs.

        {
            this.Pirates.RemoveAll(p => Bot.Game.GetMyPirate(p).IsLost);

            if (this._hasChanged /*|| this.Pirates.Any(p => Bot.Game.GetMyPirate(p).IsLost)*/)
            {
                //this.Pirates.RemoveAll(p => Bot.Game.GetMyPirate(p).IsLost);
                this.GenerateFormationInstructions();
                this._hasChanged = false;
            }
        }