// Token: 0x06000008 RID: 8 RVA: 0x000021D4 File Offset: 0x000003D4
        public static bool Powered(this TerrainInstance t)
        {
            var comp = t.GetComp <TerrainComp_PowerTrader>();

            return(comp == null || comp.PowerOn);
        }
 public static bool Powered(this TerrainInstance t)
 {
     return(t.GetComp <TerrainComp_PowerTrader>()?.PowerOn ?? true);
 }