Skip to content

Commit

Permalink
Merge pull request #37809 from Kilvoctu/moves-int
Browse files Browse the repository at this point in the history
change aim level move time to int
  • Loading branch information
ZhilkinSerg authored Feb 8, 2020
2 parents 0a5669c + 73ddf8e commit b0d1189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1728,7 +1728,7 @@ void item::gun_info( const item *mod, std::vector<iteminfo> &info, const iteminf
_( "<num>" ), iteminfo::no_flags, range );
int aim_mv = g->u.gun_engagement_moves( *mod, type.threshold );
info.emplace_back( tag, _( "Time to reach aim level: " ), _( "<num> moves " ),
iteminfo::is_decimal | iteminfo::lower_is_better, aim_mv );
iteminfo::lower_is_better, aim_mv );
}
}

Expand Down

0 comments on commit b0d1189

Please sign in to comment.