We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0adba6b commit 255ad40Copy full SHA for 255ad40
AntiLock/AntiLock.cs
@@ -26,6 +26,11 @@ protected override void Load()
26
var post = typeof(AskVehicleLockOverride).GetMethod("Postfix", BindingFlags.Static | BindingFlags.Public);
27
28
harmony.Patch(orig, new HarmonyMethod(pre), new HarmonyMethod(post));
29
+
30
+ Logger.Log("Loaded AntiLock! Default locks allocated: " + Configuration.Instance.defaultLocks);
31
+ Logger.Log("Groups:");
32
+ foreach (LockGroup l in Configuration.Instance.lockGroups)
33
+ Logger.Log(" " + l.Permission + " | " + l.MaxLocks + " locks");
34
}
35
36
public override TranslationList DefaultTranslations =>
0 commit comments