Skip to content

Commit

Permalink
yes
Browse files Browse the repository at this point in the history
  • Loading branch information
ExtraJuiceMan committed Apr 10, 2018
1 parent 0adba6b commit 255ad40
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions AntiLock/AntiLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ protected override void Load()
var post = typeof(AskVehicleLockOverride).GetMethod("Postfix", BindingFlags.Static | BindingFlags.Public);

harmony.Patch(orig, new HarmonyMethod(pre), new HarmonyMethod(post));

Logger.Log("Loaded AntiLock! Default locks allocated: " + Configuration.Instance.defaultLocks);
Logger.Log("Groups:");
foreach (LockGroup l in Configuration.Instance.lockGroups)
Logger.Log(" " + l.Permission + " | " + l.MaxLocks + " locks");
}

public override TranslationList DefaultTranslations =>
Expand Down

0 comments on commit 255ad40

Please sign in to comment.