14 lines
281 B
C#
14 lines
281 B
C#
using HarmonyLib;
|
|
using Monitor;
|
|
|
|
namespace SinmaiAssist.Common;
|
|
|
|
public class ForceQuickRetry
|
|
{
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch(typeof(QuickRetry), "IsQuickRetryEnable")]
|
|
public static void IsQuickRetryEnable(ref bool __result)
|
|
{
|
|
__result = true;
|
|
}
|
|
} |