Format Style Fixes

This commit is contained in:
sp-tarkov-bot
2025-07-28 19:39:29 +00:00
parent 51430d55c9
commit b14b74bf24
357 changed files with 7345 additions and 24604 deletions
@@ -33,9 +33,7 @@ public abstract class AbstractPatch
&& _ilManipulatorList.Count == 0
)
{
throw new Exception(
$"{_harmony.Id}: At least one of the patch methods must be specified"
);
throw new Exception($"{_harmony.Id}: At least one of the patch methods must be specified");
}
}
@@ -55,14 +53,7 @@ public abstract class AbstractPatch
var T = GetType();
var methods = new List<HarmonyMethod>();
foreach (
var method in T.GetMethods(
BindingFlags.Static
| BindingFlags.NonPublic
| BindingFlags.Public
| BindingFlags.DeclaredOnly
)
)
foreach (var method in T.GetMethods(BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.DeclaredOnly))
{
if (method.GetCustomAttribute(attributeType) != null)
{