예제 #1
0
 // Token: 0x0600000F RID: 15 RVA: 0x000024A8 File Offset: 0x000006A8
 private static IEnumerable <FactionDef> AllowedFactionDefs(IEnumerable <FactionDef> original)
 {
     return(from f in original
            where CustomStorytellerUtility.FactionAllowed(f)
            select f);
 }
 private static IEnumerable <FactionDef> AllowedFactionDefs(IEnumerable <FactionDef> original)
 {
     return(original.Where(f => CustomStorytellerUtility.FactionAllowed(f)));
 }