in your code change:
Code:
if (numberOfAllAvailablePlanes == 5)
{
if(actor.Army() == 1)
GamePlay.gpHUDLogCenter(null, "Attention Reds only {0} Planes are left", new object[] { numberOfAllAvailablePlanes });
if(actor.Army() == 2)
GamePlay.gpHUDLogCenter(null, "Attention Blues only {0} Planes are left", new object[] { numberOfAllAvailablePlanes });
}
if (place.NumberOfPlanes == 5 )
{
Timeout(5, () => {
GamePlay.gpHUDLogCenter(null, "Attention only {0} Planes are left on {1}", new object[] { place.NumberOfPlanes, place.BirthPlace });
});
}