Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: removed the statsu provide from kardia.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 29, 2023
1 parent f47a00b commit d6668ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
6 changes: 5 additions & 1 deletion Resources/AnimationLockTime.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"141": 0.1,
"149": 0.6,
"152": 0.1,
"153": 0.6,
"154": 0.1,
"158": 0.6,
"3574": 0.6,
"3576": 0.1,
"3577": 0.1,
Expand All @@ -26,9 +28,11 @@
"9793": 0.1,
"12260": 0.1,
"16505": 0.1,
"16507": 0.6,
"16524": 0.1,
"16525": 0.1,
"16527": 0.6,
"20243": 0.1,
"25796": 0.6
"25796": 0.6,
"25797": 0.6
}
1 change: 0 additions & 1 deletion RotationSolver.Basic/Rotations/Basic/SGE_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ protected static bool AddersgallEndAfterGCD(uint gctCount = 0, float offset = 0)

public static IBaseAction Kardia { get; } = new BaseAction(ActionID.Kardia, ActionOption.Heal)
{
StatusProvide = new StatusID[] { StatusID.Kardia },
ChoiceTarget = (Targets, mustUse) =>
{
var targets = Targets.GetJobCategory(JobRole.Tank);
Expand Down
12 changes: 3 additions & 9 deletions RotationSolver/Updaters/RotationUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,9 @@ private static Assembly LoadOne(string filePath)

private static void LoadRotationsFromLocal(string relayFolder)
{
var directories = Service.Config.OtherLibs
.Where(Directory.Exists)
//.Append(Path.GetDirectoryName(Assembly.GetAssembly(typeof(ICustomRotation)).Location))
#if DEBUG
//.Append(relayFolder)
#else
.Append(relayFolder)
#endif
;
var directories = new string[] { relayFolder }
.Union(Service.Config.OtherLibs
.Where(Directory.Exists));

var assemblies = from dir in directories
where Directory.Exists(dir)
Expand Down

0 comments on commit d6668ab

Please sign in to comment.