diff --git a/Source/Randomizer.cs b/Source/Randomizer.cs index 7556964..9452e03 100644 --- a/Source/Randomizer.cs +++ b/Source/Randomizer.cs @@ -11,7 +11,9 @@ public class Randomizer public Pawn GenerateColonist() { PawnKindDef kindDef = Faction.OfPlayer.def.basicMemberKind; - Pawn pawn = PawnGenerator.GeneratePawn(kindDef, Faction.OfPlayer); + Pawn pawn = PawnGenerator.GeneratePawn(new PawnGenerationRequest(kindDef, Faction.OfPlayer, + PawnGenerationContext.PlayerStarter, true, false, false, false, false, false, 0f, false, true, + false, null, null, null, null, null, null)); return pawn; }