diff --git a/About/About.xml b/About/About.xml index 3818277..6937bd8 100644 --- a/About/About.xml +++ b/About/About.xml @@ -4,7 +4,7 @@ Rim of Madness - Vampires Jecrell 0.18.0 - V1.18.1.4 + V1.18.1.5 Adds vampires to RimWorld. Heavily inspired by Vampire the Masquerade, this mod introduces a disease known as vampirism. diff --git a/Assemblies/Vampire.dll b/Assemblies/Vampire.dll index d9368bb..b564b9d 100644 Binary files a/Assemblies/Vampire.dll and b/Assemblies/Vampire.dll differ diff --git a/Defs/HediffDefs/ROMV_HediffsGhoul.xml b/Defs/HediffDefs/ROMV_HediffsGhoul.xml index c1a6ef6..b689855 100644 --- a/Defs/HediffDefs/ROMV_HediffsGhoul.xml +++ b/Defs/HediffDefs/ROMV_HediffsGhoul.xml @@ -186,11 +186,18 @@
  • - 2 - Blunt -
  • -
  • - 1 + +
  • + 2 + Blunt +
  • +
  • + 1 + +
  • Burn
  • + + +
    diff --git a/Defs/HediffDefs/ROMV_HediffsVampirism.xml b/Defs/HediffDefs/ROMV_HediffsVampirism.xml index e873842..805c1ce 100644 --- a/Defs/HediffDefs/ROMV_HediffsVampirism.xml +++ b/Defs/HediffDefs/ROMV_HediffsVampirism.xml @@ -8,18 +8,23 @@ false
  • - 3 - Blunt -
  • -
  • - 2 - -
  • Burn
  • - + +
  • + 3 + Blunt +
  • +
  • + 2 + +
  • Burn
  • + + +
  • + 0.4
  • Consciousness diff --git a/Source/Vampires/HarmonyPatches/HarmonyPatches.cs b/Source/Vampires/HarmonyPatches/HarmonyPatches.cs index 11552d3..41674de 100644 --- a/Source/Vampires/HarmonyPatches/HarmonyPatches.cs +++ b/Source/Vampires/HarmonyPatches/HarmonyPatches.cs @@ -426,9 +426,9 @@ where typeof(WorkGiver).IsAssignableFrom(assemblyType) //Allows scenarios to create longer/shorter days. harmony.Patch(AccessTools.Method(typeof(GenCelestial), "CelestialSunGlowPercent"), null, new HarmonyMethod(typeof(HarmonyPatches), nameof(Vamp_CelestialSunGlowPercent))); - //Vampires should not calculate the pain of their internal organs. - harmony.Patch(AccessTools.Method(typeof(HediffSet), "CalculatePain"), null, - new HarmonyMethod(typeof(HarmonyPatches), nameof(Vamp_CalculatePain))); +// //Vampires should not calculate the pain of their internal organs. +// harmony.Patch(AccessTools.Method(typeof(HediffSet), "CalculatePain"), null, +// new HarmonyMethod(typeof(HarmonyPatches), nameof(Vamp_CalculatePain))); #endregion