From 78ac6720ddc5d85ae978c45b1544f185f9ebd3e2 Mon Sep 17 00:00:00 2001 From: otta8634 Date: Wed, 14 May 2025 17:37:49 +0800 Subject: [PATCH] Add missed end-paragraph periods Missed some in the Nades, Jetpack Fuel, Extra Life, and Vaporizer Cells entries. These were missed from 289461d6. --- qcsrc/common/items/item/jetpack.qc | 2 +- qcsrc/common/mutators/mutator/instagib/items.qc | 4 ++-- qcsrc/common/mutators/mutator/nades/nades.qc | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qcsrc/common/items/item/jetpack.qc b/qcsrc/common/items/item/jetpack.qc index ffdcc16b7f..9370e7c03c 100644 --- a/qcsrc/common/items/item/jetpack.qc +++ b/qcsrc/common/items/item/jetpack.qc @@ -29,7 +29,7 @@ METHOD(Jetpack, describe, string(Jetpack this)) METHOD(JetpackFuel, describe, string(JetpackFuel this)) { TC(JetpackFuel, this); - return sprintf(_("The %s ammo type is used by the %s"), + return sprintf(_("The %s ammo type is used by the %s."), COLORED_NAME(this), COLORED_NAME(ITEM_Jetpack)); } diff --git a/qcsrc/common/mutators/mutator/instagib/items.qc b/qcsrc/common/mutators/mutator/instagib/items.qc index 6f5a017444..3e608dbb6d 100644 --- a/qcsrc/common/mutators/mutator/instagib/items.qc +++ b/qcsrc/common/mutators/mutator/instagib/items.qc @@ -7,7 +7,7 @@ METHOD(VaporizerCells, describe, string(VaporizerCells this)) { TC(VaporizerCells, this); - return sprintf(_("The %s is sometimes present on maps when %s is enabled, providing ammo for the %s"), + return sprintf(_("The %s is sometimes present on maps when %s is enabled, providing ammo for the %s."), COLORED_NAME(this), COLORED_NAME(MUTATOR_mutator_instagib), COLORED_NAME(WEP_VAPORIZER)); } @@ -15,7 +15,7 @@ METHOD(ExtraLife, describe, string(ExtraLife this)) { TC(ExtraLife, this); return sprintf(_("The %s powerup acts as armor in %s. " - "If a player is shot while having one or more extra lives, they will survive the shot but suffer strong knockback"), + "If a player is shot while having one or more extra lives, they will survive the shot but suffer strong knockback."), COLORED_NAME(this), COLORED_NAME(MUTATOR_mutator_instagib)); } #endif diff --git a/qcsrc/common/mutators/mutator/nades/nades.qc b/qcsrc/common/mutators/mutator/nades/nades.qc index b2593811e1..8425c8fa3d 100644 --- a/qcsrc/common/mutators/mutator/nades/nades.qc +++ b/qcsrc/common/mutators/mutator/nades/nades.qc @@ -47,10 +47,10 @@ METHOD(MutatorNades, describe, string(MutatorNades this)) { TC(MutatorNades, this); return sprintf(_("The %s mutator gives all players offhand nades that can be primed then thrown by pressing ^3drop weapon^7 twice. " - "If the %s and %s mutators are disabled, they can also be thrown by holding then releasing ^3+hook^7\n\n" + "If the %s and %s mutators are disabled, they can also be thrown by holding then releasing ^3+hook^7.\n\n" "There are multiple types of nades that can be selected, and many options available regarding this mutator, " - "so they may act a little differently depending on the server you play on\n\n" - "This mutator is enabled by default in %s"), + "so they may act a little differently depending on the server you play on.\n\n" + "This mutator is enabled by default in %s."), COLORED_NAME(this), COLORED_NAME(MUTATOR_offhand_blaster), COLORED_NAME(MUTATOR_hook), COLORED_NAME(MUTATOR_ok)); } #endif // MENUQC -- 2.39.5