Skip to content

Commit

Permalink
remove patch log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
misternebula committed Nov 12, 2023
1 parent 95ed511 commit 5f92d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QSB/Patches/QSBPatchManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ public static void DoPatchType(QSBPatchTypes type)
}

OnPatchType?.SafeInvoke(type);
DebugLog.DebugWrite($"Patch block {Enum.GetName(typeof(QSBPatchTypes), type)}", MessageType.Info);
//DebugLog.DebugWrite($"Patch block {Enum.GetName(typeof(QSBPatchTypes), type)}", MessageType.Info);
foreach (var patch in _patchList.Where(x => x.Type == type && x.PatchVendor.HasFlag(QSBCore.GameVendor)))
{
DebugLog.DebugWrite($" - Patching in {patch.GetType().Name}", MessageType.Info);
//DebugLog.DebugWrite($" - Patching in {patch.GetType().Name}", MessageType.Info);
try
{
patch.DoPatches(TypeToInstance[type]);
Expand Down

0 comments on commit 5f92d5d

Please sign in to comment.