Ejemplo n.º 1
0
 public static bool ShouldPawnKeepPartying(Pawn p)
 {
     if (p.timetable != null && !p.timetable.CurrentAssignment.allowJoy)
     {
         return(false);
     }
     if (!GatheringsUtility.ShouldGuestKeepAttendingGathering(p))
     {
         return(false);
     }
     return(true);
 }
Ejemplo n.º 2
0
 public static bool ShouldGuestKeepAttendingCeremony(Pawn p)
 {
     return(GatheringsUtility.ShouldGuestKeepAttendingGathering(p));
 }
Ejemplo n.º 3
0
 public static bool ShouldPawnKeepPartying(Pawn p)
 {
     return((p.timetable == null || p.timetable.CurrentAssignment.allowJoy) && GatheringsUtility.ShouldGuestKeepAttendingGathering(p));
 }