Skip to content

Commit 76f0373

Browse files
committed
cleanup
1 parent 25b1177 commit 76f0373

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Source/Maintenance/MaintenanceRoutine.cs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ internal static class MaintenaceRoutine {
88

99
private static void CheckSpeedrunTool() {
1010
// Tiny SRT needs "sync fork" from SpeedrunTool
11+
// also, if a mod support SRT on its own, we need to create a corresponding support in TASHelper
1112
}
1213

1314
[Initialize]

Source/Utils/AttributeUtils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static void SendToTas<TSource>(string attributeFullName) where TSource :
6868
[Unload]
6969
public static void ReclaimFromTas() {
7070
foreach (KeyValuePair<IEnumerable<MethodInfo>, Type> pair in MethodsSentToTas) {
71-
if (TAS.Utils.AttributeUtils.MethodInfos.TryGetValue(pair.Value, out var targetInfos)){
71+
if (TAS.Utils.AttributeUtils.MethodInfos.TryGetValue(pair.Value, out var targetInfos)) {
7272
targetInfos = targetInfos.ToList().Apply(x => {
7373
foreach (MethodInfo source in pair.Key) {
7474
x.Remove(source);

0 commit comments

Comments
 (0)