versioning

This commit is contained in:
c0ffee 2021-04-13 20:57:27 -07:00
parent c8b96b4b5c
commit 49fb421099
4 changed files with 17 additions and 14 deletions

View file

@ -54,12 +54,11 @@ namespace RJW_Events
List<Pawn> targets = LordUtility.GetLord(pawn).ownedPawns;
Pawn pawn2 = null;
if(!BestPawnForOrgyExists(pawn, targets, out pawn2))
if (!BestPawnForOrgyExists(pawn, targets, out Pawn pawn2))
{
return null;
return null;
}
if (pawn2 == null)
if (pawn2 == null)
{
return null;
}

View file

@ -59,6 +59,5 @@ namespace RJW_Events
{
return timeoutTrigger.TicksLeft < 300;
}
}
}