[inline, private]
Return the percent of lost pirates in this group.
Definition at line 363 of file Group.cs.
{ if(this.Pirates.Count > 0) return 100 * (this.Pirates.Count(p => Bot.Game.GetMyPirate(p).IsLost) / this.Pirates.Count); return 0; }