28 lines
735 B
C#
28 lines
735 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Harmony;
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|