Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change 3 init.cpp items to title case #57130

Merged
merged 1 commit into from
Apr 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,9 +759,9 @@ void DynamicDataLoader::check_consistency( loading_ui &ui )
{ _( "Field types" ), &field_types::check_consistency },
{ _( "Ammo effects" ), &ammo_effects::check_consistency },
{ _( "Emissions" ), &emit::check_consistency },
{ _( "Effect Types" ), &effect_type::check_consistency },
{ _( "Effect types" ), &effect_type::check_consistency },
{ _( "Activities" ), &activity_type::check_consistency },
{ _( "Addiction Types" ), &add_type::check_add_types },
{ _( "Addiction types" ), &add_type::check_add_types },
{
_( "Items" ), []()
{
Expand All @@ -787,7 +787,7 @@ void DynamicDataLoader::check_consistency( loading_ui &ui )
{ _( "Scenarios" ), &scenario::check_definitions },
{ _( "Martial arts" ), &check_martialarts },
{ _( "Mutations" ), &mutation_branch::check_consistency },
{ _( "Mutation Categories" ), &mutation_category_trait::check_consistency },
{ _( "Mutation categories" ), &mutation_category_trait::check_consistency },
{ _( "Region settings" ), check_region_settings },
{ _( "Overmap land use codes" ), &overmap_land_use_codes::check_consistency },
{ _( "Overmap connections" ), &overmap_connections::check_consistency },
Expand Down