Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-ie committed Feb 26, 2023
1 parent b9317f2 commit 000a759
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified Source/.vs/NoColonialRelations/v17/.suo
Binary file not shown.
5 changes: 3 additions & 2 deletions Source/NoRandomRelations/CanGeneratePawnRelations_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ namespace NoColonialRelations
[HarmonyPatch(typeof(PawnGenerationRequest), "ColonistRelationChanceFactor", MethodType.Getter)]
public static class ColonistRelationChanceFactor_Patch
{
public static void Prefix(ref float __result)
public static bool Prefix(ref float __result)
{
__result = 0f;
__result = 0f;
return false;
}
}
}

0 comments on commit 000a759

Please sign in to comment.