Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace VREAndroids
[HarmonyPatch]
public static class CompAbilityEffect_BloodfeederBite_Valid_Patch
{
public static bool VanillaRacesExpandedSanguophageActive = ModsConfig.IsActive("vanillaracesexpanded.sanguophage");
public static bool VanillaRacesExpandedSanguophageActive = ModsConfig.IsActive("vanillaracesexpanded.sanguophage") || ModsConfig.IsActive("vanillaracesexpanded.sanguophage_steam");

[HarmonyTargetMethods]
public static IEnumerable<MethodBase> TargetMethods()
Expand Down
6 changes: 3 additions & 3 deletions 1.4/Source/Utilities/ModCompatibility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ namespace VREAndroids
[StaticConstructorOnStartup]
public static class ModCompatibility
{
public static bool DubsMintMenusActive = ModsConfig.IsActive("Dubwise.DubsMintMenus");
public static bool SnapOutActive = ModsConfig.IsActive("weilbyte.snapout");
public static bool MSE2Active = ModsConfig.IsActive("MSE2.Core");
public static bool DubsMintMenusActive = ModsConfig.IsActive("Dubwise.DubsMintMenus") || ModsConfig.IsActive("Dubwise.DubsMintMenus_steam");
public static bool SnapOutActive = ModsConfig.IsActive("weilbyte.snapout") || ModsConfig.IsActive("weilbyte.snapout_steam");
public static bool MSE2Active = ModsConfig.IsActive("MSE2.Core") || ModsConfig.IsActive("MSE2.Core_steam");
public static Type ignoreSubPartsExtensionType;
static ModCompatibility()
{
Expand Down