Skip to content

Commit 152f5c9

Browse files
authored
Fix missing space in basecamp expansion label (#82578)
2 parents d6742f0 + bf6e521 commit 152f5c9

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)