Remove unneeded capitalize

develop
Myk 2023-09-28 17:43:06 -07:00 committed by GitHub
parent 13f83d2f95
commit af65f185a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -194,7 +194,7 @@ static void checkslabs(color_ostream &out)
)
{
createSlabJob(ghost);
auto fullName = Translation::capitalize(Translation::TranslateName(&ghost->name, false), true);
auto fullName = Translation::TranslateName(&ghost->name, false);
out.print("Added slab order for ghost %s\n", fullName.c_str());
}
}