Skip to content

Commit

Permalink
Fix off by one
Browse files Browse the repository at this point in the history
  • Loading branch information
navv1234 committed May 25, 2018
1 parent c25a09e commit 3068eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/dbc/sc_item_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ combat_rating_multiplier_type item_database::item_combat_rating_type( const item

void item_database::convert_stat_values( item_t& item )
{
if ( item.parsed.data.quality < 3 || item.parsed.data.quality > 7 )
if ( item.parsed.data.quality < 2 || item.parsed.data.quality > 7 )
{
return;
}
Expand Down

0 comments on commit 3068eed

Please sign in to comment.