From 03cf2de074b3b24374cf4ddae3a03dca781011ba Mon Sep 17 00:00:00 2001 From: arijust <54635208+arijust@users.noreply.github.com> Date: Thu, 14 Oct 2021 19:43:43 +0200 Subject: [PATCH] Changed needed anti-glare quality to 1. As levels 2 and 3 for that don't exist anymore. --- src/iuse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iuse.cpp b/src/iuse.cpp index 6449f00371f3c..645d68999abc7 100644 --- a/src/iuse.cpp +++ b/src/iuse.cpp @@ -4844,7 +4844,7 @@ cata::optional 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; }