diff --git a/src/armor_layers.cpp b/src/armor_layers.cpp index c9227c267d9cf..e6a38990e8941 100644 --- a/src/armor_layers.cpp +++ b/src/armor_layers.cpp @@ -452,6 +452,9 @@ std::vector clothing_flags_description( const item &worn_item ) if( worn_item.has_flag( flag_POCKETS ) ) { description_stack.emplace_back( _( "It has pockets." ) ); } + if( worn_item.has_flag( flag_SUN_GLASSES ) ) { + description_stack.emplace_back( _( "It keeps the sun out of your eyes." ) ); + } if( worn_item.has_flag( flag_WATERPROOF ) ) { description_stack.emplace_back( _( "It is waterproof." ) ); } @@ -473,9 +476,6 @@ std::vector clothing_flags_description( const item &worn_item ) if( worn_item.has_flag( flag_SWIM_GOGGLES ) ) { description_stack.emplace_back( _( "It helps you to see clearly underwater." ) ); } - if( worn_item.has_flag( flag_SUN_GLASSES ) ) { - description_stack.emplace_back( _( "It keeps the sun out of your eyes." ) ); - } if( worn_item.has_flag( flag_SEMITANGIBLE ) ) { description_stack.emplace_back( _( "It can occupy the same space as other things." ) ); }