private void TryLaunch()
 {
     if (this.CanLaunchNow)
     {
         ArchotechCountdown.InitiateCountdown(this);
     }
 }
Ejemplo n.º 2
0
        public override void Tick()
        {
            base.Tick();

            if (wombProgress != -1)
            {
                this.wombProgress += 1f / (GenDate.TicksPerHour * wombDuration);
                if (this.wombProgress >= 1)
                {
                    ArchotechCountdown.InitiateCountdown(this);
                    wombProgress = -1;
                }
            }
        }