Skip to content

Commit bf6e521

Browse files
committed
Fix missing space in basecamp expansion label
1 parent d92a2a4 commit bf6e521

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/basecamp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,8 @@ std::string basecamp::expansion_tab( const point_rel_omt &dir ) const
966966
recipe_id id( base_camps::faction_encode_abs( e->second, 0 ) );
967967
const auto e_type = expansion_types.find( id );
968968
if( e_type != expansion_types.end() ) {
969-
return e_type->second + _( "Expansion" );
969+
//~ A particular faction camp / basecamp expansion
970+
return string_format( _( "%s Expansion" ), e_type->second );
970971
}
971972
}
972973
return _( "Empty Expansion" );

0 commit comments

Comments
 (0)