Skip to content

Commit

Permalink
Merge pull request CleverRaven#52292 from arijust/antiglare_fix
Browse files Browse the repository at this point in the history
Fix Anti-glare compensator
  • Loading branch information
Rivet-the-Zombie authored Oct 17, 2021
2 parents b870101 + 03cf2de commit c9d5870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iuse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4844,7 +4844,7 @@ cata::optional<int> iuse::oxytorch( Character *p, item *it, bool, const tripoint
return cata::nullopt;
}
static const quality_id GLARE( "GLARE" );
if( !p->has_quality( GLARE, 2 ) ) {
if( !p->has_quality( GLARE, 1 ) ) {
p->add_msg_if_player( m_info, _( "You need welding goggles to do that." ) );
return cata::nullopt;
}
Expand Down

0 comments on commit c9d5870

Please sign in to comment.