-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: Predictor doesn't work properly when encountering Strawberry Jam Wonky Cassette Blocks
- Loading branch information
Showing
7 changed files
with
54 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
//#define Maintenance | ||
|
||
#if Maintenance | ||
using Celeste.Mod.TASHelper.Utils; | ||
|
||
namespace Celeste.Mod.TASHelper.Maintenance; | ||
internal static class MaintenaceRoutine { | ||
|
||
private static void CheckSpeedrunTool() { | ||
// Tiny SRT needs "sync fork" from SpeedrunTool | ||
} | ||
|
||
[Initialize] | ||
private static void CheckSimplifiedTriggers() { | ||
// check if new triggers appear and need to be "simplified" | ||
List<Type> types = ModUtils.GetTypes().Where(x => x.IsSameOrSubclassOf(typeof(Trigger))).ToList(); | ||
foreach (Type type in types) { | ||
Logger.Log("TAS Helper Maintenance", type.FullName); | ||
} | ||
} | ||
|
||
private static void CheckTasSync() { | ||
// run tases of the most popular maps | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters