File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3511,7 +3511,7 @@ std::string player_t::parse_assisted_combat_rule( const assisted_combat_rule_dat
3511
3511
// TODO: Are there any other types of passives to check here?
3512
3512
// TODO: What happens when Blizzard uses an aura here like they did with Mind Flay: Insanity?
3513
3513
}
3514
- return " " ; // no check necessary because simc actions are filtered out of the spell is not known
3514
+ return " " ; // no check necessary because simc actions are filtered out if the spell is not known
3515
3515
case SPELL_ON_COOLDOWN:
3516
3516
assert ( v2 == 0 && v3 == 0 );
3517
3517
if ( v1 )
@@ -3524,7 +3524,7 @@ std::string player_t::parse_assisted_combat_rule( const assisted_combat_rule_dat
3524
3524
return " " ; // no check necessary because simc actions are not ready unless their cooldown is ready
3525
3525
case TARGET_DISTANCE_LESS:
3526
3526
assert ( v2 == 0 && v3 == 0 );
3527
- return fmt::format ( " target.distance<{}" , v1 );
3527
+ return fmt::format ( " target.distance<= {}" , v1 );
3528
3528
case TARGET_DISTANCE_GREATER:
3529
3529
assert ( v2 == 0 && v3 == 0 );
3530
3530
return fmt::format ( " target.distance>{}" , v1 );
You can’t perform that action at this time.
0 commit comments