diff --git a/Source/.vs/NoColonialRelations/FileContentIndex/397171fc-3131-495f-80eb-1850df5f1c65.vsidx b/Source/.vs/NoColonialRelations/FileContentIndex/397171fc-3131-495f-80eb-1850df5f1c65.vsidx new file mode 100644 index 0000000..75c0a7e Binary files /dev/null and b/Source/.vs/NoColonialRelations/FileContentIndex/397171fc-3131-495f-80eb-1850df5f1c65.vsidx differ diff --git a/Source/.vs/NoColonialRelations/FileContentIndex/c03e2f0f-5884-4c51-a775-5715c63e1474.vsidx b/Source/.vs/NoColonialRelations/FileContentIndex/c03e2f0f-5884-4c51-a775-5715c63e1474.vsidx deleted file mode 100644 index 430a21e..0000000 Binary files a/Source/.vs/NoColonialRelations/FileContentIndex/c03e2f0f-5884-4c51-a775-5715c63e1474.vsidx and /dev/null differ diff --git a/Source/.vs/NoColonialRelations/v17/.suo b/Source/.vs/NoColonialRelations/v17/.suo index 6546623..0377e57 100644 Binary files a/Source/.vs/NoColonialRelations/v17/.suo and b/Source/.vs/NoColonialRelations/v17/.suo differ diff --git a/Source/NoRandomRelations/CanGeneratePawnRelations_Patch.cs b/Source/NoRandomRelations/CanGeneratePawnRelations_Patch.cs index db96717..8bbad95 100644 --- a/Source/NoRandomRelations/CanGeneratePawnRelations_Patch.cs +++ b/Source/NoRandomRelations/CanGeneratePawnRelations_Patch.cs @@ -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; } } }