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

Fix some grammar #52346

Merged
merged 2 commits into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion data/json/items/book/barter.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"id": "mag_barter",
"type": "BOOK",
"name": { "str": "car buyer's guide" },
"name": { "str": "Car Buyer's Guide", "str_pl": "copies of Car Buyer's Guide" },
"description": "Normally this glossy, ad-filled magazine about cars would be pointless, but it has a series of articles on haggling techniques.",
"weight": "90 g",
"volume": "250 ml",
Expand Down
4 changes: 2 additions & 2 deletions data/json/monsters/zed_explosive.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"harvest": "exempt",
"special_attacks": [ [ "BOOMER", 20 ], [ "scratch", 20 ] ],
"death_drops": "default_zombie_items",
"death_function": { "effect": { "id": "death_boomer", "hit_self": true }, "message": "A %s explode!", "corpse_type": "NO_CORPSE" },
"death_function": { "effect": { "id": "death_boomer", "hit_self": true }, "message": "A %s explodes!", "corpse_type": "NO_CORPSE" },
"upgrades": { "half_life": 14, "into_group": "GROUP_ZOMBIE_BOOMER_UPGRADE" },
"fungalize_into": "mon_boomer_fungus",
"flags": [
Expand Down Expand Up @@ -78,7 +78,7 @@
"death_drops": "default_zombie_items",
"death_function": {
"effect": { "id": "death_boomer_glow", "hit_self": true, "min_level": 1 },
"message": "A %s explode!",
"message": "A %s explodes!",
"corpse_type": "NO_CORPSE"
},
"flags": [
Expand Down
2 changes: 1 addition & 1 deletion object_creator/spell_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static spell_type default_spell_type()
{
spell_type ret;
ret.sound_type = sounds::sound_t::combat;
ret.sound_description = to_translation( "an explosion" );
ret.sound_description = to_translation( "an explosion." );
ret.sound_variant = "default";
ret.message = to_translation( "You cast %s!" );
ret.skill = skill_id( "spellcraft" );
Expand Down
2 changes: 1 addition & 1 deletion src/magic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const skill_id spell_type::skill_default = skill_id( "spellcraft" );
// empty string
const requirement_id spell_type::spell_components_default;
const translation spell_type::message_default = to_translation( "You cast %s!" );
const translation spell_type::sound_description_default = to_translation( "an explosion" );
const translation spell_type::sound_description_default = to_translation( "an explosion." );
const sounds::sound_t spell_type::sound_type_default = sounds::sound_t::combat;
const bool spell_type::sound_ambient_default = false;
// empty string
Expand Down