@@ -81,29 +81,6 @@ partial class BlackMageRotation
81
81
protected static bool EnochianEndAfterGCD ( uint gcdCount = 0 , float offset = 0 )
82
82
=> EnochianEndAfter ( GCDTime ( gcdCount , offset ) ) ;
83
83
84
- static float ElementTimeRaw => JobGauge . ElementTimeRemaining / 1000f ;
85
-
86
- /// <summary>
87
- ///
88
- /// </summary>
89
- protected static float ElementTime => ElementTimeRaw - DataCenter . DefaultGCDRemain ;
90
-
91
- /// <summary>
92
- ///
93
- /// </summary>
94
- /// <param name="time"></param>
95
- /// <returns></returns>
96
- protected static bool ElementTimeEndAfter ( float time ) => ElementTime <= time ;
97
-
98
- /// <summary>
99
- ///
100
- /// </summary>
101
- /// <param name="gctCount"></param>
102
- /// <param name="offset"></param>
103
- /// <returns></returns>
104
- protected static bool ElementTimeEndAfterGCD ( uint gctCount = 0 , float offset = 0 )
105
- => ElementTimeEndAfter ( GCDTime ( gctCount , offset ) ) ;
106
-
107
84
/// <summary>
108
85
///
109
86
/// </summary>
@@ -214,7 +191,7 @@ static partial void ModifyFirePvE(ref ActionSetting setting)
214
191
215
192
static partial void ModifyTransposePvE ( ref ActionSetting setting )
216
193
{
217
- setting . ActionCheck = ( ) => DataCenter . DefaultGCDRemain <= ElementTimeRaw ;
194
+ // setting.ActionCheck = () => DataCenter.DefaultGCDRemain <= ElementTimeRaw;
218
195
}
219
196
220
197
static partial void ModifyThunderPvE ( ref ActionSetting setting )
@@ -282,7 +259,7 @@ static partial void ModifyUmbralSoulPvE(ref ActionSetting setting)
282
259
283
260
static partial void ModifyFreezePvE ( ref ActionSetting setting )
284
261
{
285
- setting . ActionCheck = ( ) => InUmbralIce && ! ElementTimeEndAfter ( ActionID . FreezePvE . GetCastTime ( ) - 0.1f ) && UmbralHearts == 0 ;
262
+ setting . ActionCheck = ( ) => InUmbralIce && UmbralHearts == 0 ;
286
263
setting . UnlockedByQuestID = 66611 ;
287
264
setting . CreateConfig = ( ) => new ActionConfig ( )
288
265
{
@@ -304,7 +281,7 @@ static partial void ModifyAetherialManipulationPvE(ref ActionSetting setting)
304
281
305
282
static partial void ModifyFlarePvE ( ref ActionSetting setting )
306
283
{
307
- setting . ActionCheck = ( ) => InAstralFire && AstralSoulStacks <= 3 && ! ElementTimeEndAfter ( ActionID . FlarePvE . GetCastTime ( ) - 0.1f ) ;
284
+ setting . ActionCheck = ( ) => InAstralFire && AstralSoulStacks <= 3 ;
308
285
setting . UnlockedByQuestID = 66614 ;
309
286
setting . CreateConfig = ( ) => new ActionConfig ( )
310
287
{
@@ -327,13 +304,13 @@ static partial void ModifyLeyLinesPvE(ref ActionSetting setting)
327
304
328
305
static partial void ModifyBlizzardIvPvE ( ref ActionSetting setting )
329
306
{
330
- setting . ActionCheck = ( ) => InUmbralIce && ! ElementTimeEndAfter ( ActionID . BlizzardIvPvE . GetCastTime ( ) - 0.1f ) ;
307
+ setting . ActionCheck = ( ) => InUmbralIce ;
331
308
setting . UnlockedByQuestID = 67218 ;
332
309
}
333
310
334
311
static partial void ModifyFireIvPvE ( ref ActionSetting setting )
335
312
{
336
- setting . ActionCheck = ( ) => InAstralFire && AstralSoulStacks <= 5 && ! ElementTimeEndAfter ( ActionID . FireIvPvE . GetCastTime ( ) - 0.1f ) ;
313
+ setting . ActionCheck = ( ) => InAstralFire && AstralSoulStacks <= 5 ;
337
314
setting . UnlockedByQuestID = 67219 ;
338
315
}
339
316
@@ -373,7 +350,7 @@ static partial void ModifyFoulPvE(ref ActionSetting setting)
373
350
374
351
static partial void ModifyDespairPvE ( ref ActionSetting setting )
375
352
{
376
- setting . ActionCheck = ( ) => InAstralFire && ! ElementTimeEndAfter ( ActionID . DespairPvE . GetCastTime ( ) - 0.1f ) ;
353
+ setting . ActionCheck = ( ) => InAstralFire ;
377
354
}
378
355
379
356
static partial void ModifyXenoglossyPvE ( ref ActionSetting setting )
0 commit comments