We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 557c613 commit c66f9c8Copy full SHA for c66f9c8
engine/player/player.cpp
@@ -3605,10 +3605,10 @@ std::string player_t::parse_assisted_combat_rule( const assisted_combat_rule_dat
3605
return fmt::format( "mana.pct<={:g}", v1 / 10.0 ); // TODO: Double check this
3606
case RAGE_GREATER:
3607
assert( v2 == 0 && v3 == 0 );
3608
- return fmt::format( "rage>={}", v1 ); // TODO: Does this need a multiplier?
+ return fmt::format( "rage>={:g}", v1 / 10.0 );
3609
case RAGE_LESS:
3610
3611
- return fmt::format( "rage<={}", v1 ); // TODO: Does this need a multiplier?
+ return fmt::format( "rage<={:g}", v1 / 10.0 );
3612
case FOCUS_GREATER:
3613
3614
return fmt::format( "focus>={}", v1 );
0 commit comments