28 lines
739 B
C#
28 lines
739 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using HarmonyLib;
|
|
using RobocraftX.FrontEnd;
|
|
|
|
namespace GamecraftModdingAPI.Utility
|
|
{
|
|
/// <summary>
|
|
/// Patch of bool RobocraftX.FrontEnd.MinimumSpecsCheck.CheckRequirementsMet()
|
|
/// </summary>
|
|
[HarmonyPatch(typeof(MinimumSpecsCheck), "CheckRequirementsMet")]
|
|
class MinimumSpecsCheckPatch
|
|
{
|
|
/// <summary>
|
|
/// Ignore result of the requirement check?
|
|
/// </summary>
|
|
public static bool ForcePassMinimumSpecCheck = false;
|
|
|
|
public static void Postfix(ref bool __result)
|
|
{
|
|
__result = __result || ForcePassMinimumSpecCheck;
|
|
}
|
|
}
|
|
}
|