File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed
RotationSolver.Basic/Helpers Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change 9
9
using ECommons . GameHelpers ;
10
10
using ECommons . Logging ;
11
11
using ExCSS ;
12
+ using FFXIVClientStructs ;
12
13
using FFXIVClientStructs . FFXIV . Client . Game ;
13
14
using FFXIVClientStructs . FFXIV . Client . Game . Event ;
14
15
using FFXIVClientStructs . FFXIV . Client . Graphics ;
@@ -188,26 +189,26 @@ internal static bool IsAttackable(this IBattleChara battleChara)
188
189
}
189
190
}
190
191
191
- if ( DataCenter . IsInOccultCrescentOp )
192
- {
193
- bool isInCE = Player . Object . GetEventType ( ) == EventHandlerContent . PublicContentDirector ;
192
+ // if (DataCenter.IsInOccultCrescentOp)
193
+ // {
194
+ // // bool isInCE = this needs to be fixed to sort out indiicator for in CE or not
194
195
195
- if ( isInCE )
196
- {
197
- if ( ! battleChara . IsOccultCEMob ( ) )
198
- {
199
- return false ;
200
- }
201
- }
196
+ // if (isInCE)
197
+ // {
198
+ // if (!battleChara.IsOccultCEMob())
199
+ // {
200
+ // return false;
201
+ // }
202
+ // }
202
203
203
- if ( ! isInCE )
204
- {
205
- if ( battleChara . IsOccultCEMob ( ) )
206
- {
207
- return false ;
208
- }
209
- }
210
- }
204
+ // if (!isInCE)
205
+ // {
206
+ // if (battleChara.IsOccultCEMob())
207
+ // {
208
+ // return false;
209
+ // }
210
+ // }
211
+ // }
211
212
212
213
if ( Service . Config . TargetQuestThings && battleChara . IsOthersPlayersMob ( ) )
213
214
{
@@ -297,7 +298,7 @@ internal static bool IsOccultFateMob(this IBattleChara battleChara)
297
298
return false ;
298
299
}
299
300
300
- if ( battleChara . IsEnemy ( ) == false )
301
+ if ( ! battleChara . IsEnemy ( ) )
301
302
{
302
303
return false ;
303
304
}
You can’t perform that action at this time.
0 commit comments