diff --git a/About/About.xml b/About/About.xml index d445da6..ebc2259 100644 --- a/About/About.xml +++ b/About/About.xml @@ -27,5 +27,6 @@
  • brrainz.harmony
  • ludeon.rimworld.biotech
  • rim.job.world
  • +
  • ASMR.RJW.RaceSupport
  • \ No newline at end of file diff --git a/Assemblies/RJW_BGS.dll b/Assemblies/RJW_BGS.dll index c1453dd..067896a 100644 Binary files a/Assemblies/RJW_BGS.dll and b/Assemblies/RJW_BGS.dll differ diff --git a/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/0eb8971d-5fd5-4e3c-bf07-012e3b83c4ae.vsidx b/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/0eb8971d-5fd5-4e3c-bf07-012e3b83c4ae.vsidx new file mode 100644 index 0000000..f040402 Binary files /dev/null and b/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/0eb8971d-5fd5-4e3c-bf07-012e3b83c4ae.vsidx differ diff --git a/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/423eb7c2-4b31-454f-84c3-7021ad6b44aa.vsidx b/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/423eb7c2-4b31-454f-84c3-7021ad6b44aa.vsidx deleted file mode 100644 index a565d78..0000000 Binary files a/Source/RJW_BGS/.vs/RJW_BGS/FileContentIndex/423eb7c2-4b31-454f-84c3-7021ad6b44aa.vsidx and /dev/null differ diff --git a/Source/RJW_BGS/.vs/RJW_BGS/v17/.suo b/Source/RJW_BGS/.vs/RJW_BGS/v17/.suo index ce5a9cb..55eb4a0 100644 Binary files a/Source/RJW_BGS/.vs/RJW_BGS/v17/.suo and b/Source/RJW_BGS/.vs/RJW_BGS/v17/.suo differ diff --git a/Source/RJW_BGS/PatchRJWHediffInsect_Egg.cs b/Source/RJW_BGS/PatchRJWHediffInsect_Egg.cs index 44e720c..d52f62d 100644 --- a/Source/RJW_BGS/PatchRJWHediffInsect_Egg.cs +++ b/Source/RJW_BGS/PatchRJWHediffInsect_Egg.cs @@ -24,7 +24,8 @@ namespace RJW_BGS foreach (CodeInstruction instruction in instructions) { - if(instruction.opcode == OpCodes.Call && instruction.operand.ToString() == "Void BabyPostBirth(Verse.Pawn, Verse.Pawn, Verse.Pawn)") + yield return instruction; + if (instruction.opcode == OpCodes.Call && instruction.operand.ToString() == "Void BabyPostBirth(Verse.Pawn, Verse.Pawn, Verse.Pawn)") { yield return new CodeInstruction(OpCodes.Ldloc_0, null); yield return new CodeInstruction(OpCodes.Ldfld, implanter); @@ -33,7 +34,7 @@ namespace RJW_BGS yield return new CodeInstruction(OpCodes.Ldloc_1, null); yield return new CodeInstruction(OpCodes.Call, newgenes); } - yield return instruction; + } } } diff --git a/Source/RJW_BGS/obj/Debug/RJW_BGS.dll b/Source/RJW_BGS/obj/Debug/RJW_BGS.dll index c1453dd..067896a 100644 Binary files a/Source/RJW_BGS/obj/Debug/RJW_BGS.dll and b/Source/RJW_BGS/obj/Debug/RJW_BGS.dll differ