Skip to content

Commit 95780af

Browse files
authored
Merge pull request #82784 from a666/patch-2
Add missing uppercase letter on spell characteristics enumerate
2 parents a5614f9 + d7b219f commit 95780af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/magic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2765,7 +2765,7 @@ std::string spell::enumerate_spell_data( const Character &guy ) const
27652765
has_flag( spell_flag::PSIONIC ) ) {
27662766
spell_data.emplace_back( _( "can be channeled through walls" ) );
27672767
}
2768-
return enumerate_as_string( spell_data );
2768+
return uppercase_first_letter( enumerate_as_string( spell_data ) );
27692769
}
27702770

27712771
void spellcasting_callback::display_spell_info( size_t index )

0 commit comments

Comments
 (0)