Skip to content

Commit

Permalink
1.24.0.1 Caez Additional Job Fix
Browse files Browse the repository at this point in the history
Merged change on GitHub created by Caez. This should assure non-vampires are not running additional logic checks.
  • Loading branch information
jecrell committed Jun 24, 2022
1 parent d6cd845 commit f37b946
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 9 deletions.
Binary file modified 1.3/Assemblies/Vampire.dll
Binary file not shown.
6 changes: 5 additions & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<li>jecrell.jecstools</li>
<li>Dubwise.DubsBadHygiene</li>
</loadAfter>
<description>1.24.0.0 (06-24-2022)
<description>1.24.0.1 (06-24-2022)

Adds vampires to RimWorld.

Expand All @@ -49,6 +49,10 @@ Michael Fisher, Storm D Bain, Luke Salinas, WonkyWoo WeebHoo, Daniel Schott, Rai
========================
Changelog
========================
1.24.0.1 (06-24-2022)
========================
Merged change on GitHub created by Caez. This should assure non-vampires are not running additional logic checks.

1.24.0.0 (06-24-2022)
========================
Added support for VexedTree's mods (Robots and Skeletons). Coolant vomit filth added. Chance changed to 95% chance for coolant vomit for non-coolant using creatures. Added patch and edit support. A list of coolant users is available in the Defs folder
Expand Down
4 changes: 4 additions & 0 deletions About/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.24.0.1 (06-24-2022)
========================
Merged change on GitHub created by Caez. This should assure non-vampires are not running additional logic checks.

1.24.0.0 (06-24-2022)
========================
Added support for VexedTree's mods (Robots and Skeletons). Coolant vomit filth added. Chance changed to 95% chance for coolant vomit for non-coolant using creatures. Added patch and edit support. A list of coolant users is available in the Defs folder
Expand Down
2 changes: 1 addition & 1 deletion About/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>RimOfMadness-Vampires</identifier>
<version>1.24.0.0</version>
<version>1.24.0.1</version>
<dependencies>
<li>jecrell.jecstools</li>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion About/PatreonURL.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://www.patreon.com/posts/22142186
https://www.patreon.com/posts/rim-of-madness-1-54281813
2 changes: 1 addition & 1 deletion About/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.24.0.0
1.24.0.1
4 changes: 3 additions & 1 deletion Source/Vampires/HarmonyPatches/HarmonyPatches_Pathing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ public static void HarmonyPatches_Pathing(Harmony harmony)
// Verse.ReachabilityUtility
public static void CanReach_Vampire(ref bool __result, Pawn pawn, LocalTargetInfo dest, PathEndMode peMode, Danger maxDanger, bool canBashDoors = false, bool canBashFences = false, TraverseMode mode = TraverseMode.ByPawn)
{
if !(__result && pawn.IsVampire()) return;
if (!(__result && pawn.IsVampire()))
return;

var inBeastMentalState = pawn?.MentalStateDef == DefDatabase<MentalStateDef>.GetNamed("ROMV_VampireBeast");
var inRestrictedSunlightAIMode = pawn?.VampComp()?.CurrentSunlightPolicy == SunlightPolicy.Restricted;
var isDaylight = VampireUtility.IsDaylight(pawn);
Expand Down
8 changes: 4 additions & 4 deletions updateinfo
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
==============================

Rim of Madness - Vampires Update
v1.24.0.0 (06-24-2022)
v1.24.0.1 (06-24-2022)
====================

Added support for VexedTree's mods (Robots and Skeletons). Coolant vomit filth added. Chance changed to 95% chance for coolant vomit for non-coolant using creatures. Added patch and edit support. A list of coolant users is available in the Defs folder
Merged change on GitHub created by Caez. This should assure non-vampires are not running additional logic checks.
--------------------

Download now on...
Expand All @@ -25,9 +25,9 @@ Discuss the mod on...
[img width=260]https://raw.githubusercontent.com/Rim-Of-Madness-Team/Rim-of-Madness---Vampires/master/About/Preview.png[/img]
[hr]
[b]Rim of Madness - Vampires
Version: 1.24.0.0
Version: 1.24.0.1
Updated: 06-24-2022
Description: [color=orange]Added support for VexedTree's mods (Robots and Skeletons). Coolant vomit filth added. Chance changed to 95% chance for coolant vomit for non-coolant using creatures. Added patch and edit support. A list of coolant users is available in the Defs folder[/color]
Description: [color=orange]Merged change on GitHub created by Caez. This should assure non-vampires are not running additional logic checks.[/color]
[hr]
[b]Download now on...[/b]
[url=https://www.patreon.com/posts/22142186]Patreon[/url]
Expand Down

0 comments on commit f37b946

Please sign in to comment.