]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Improve 2 cvar descriptions
authorterencehill <piuntn@gmail.com>
Tue, 19 Jan 2016 19:03:21 +0000 (20:03 +0100)
committerGitLab <gitlab@gitlab.com>
Wed, 27 Jan 2016 20:54:34 +0000 (20:54 +0000)
qcsrc/common/mutators/mutator/damagetext/damagetext.qc

index bf4c05239c8c6e9287e93a9a77545c502c990e6a..90e401a89233f717f41b2c15f21db9184ea4efae 100644 (file)
@@ -11,9 +11,9 @@
 REGISTER_MUTATOR(damagetext, true);
 
 #if defined(CSQC) || defined(MENUQC)
-AUTOCVAR_SAVE(cl_damagetext,                    bool,   false,      _("Draw damage dealt. 0: disabled, 1: enabled"));
+AUTOCVAR_SAVE(cl_damagetext,                    bool,   false,      _("Draw damage dealt where you hit the enemy"));
 AUTOCVAR_SAVE(cl_damagetext_format,             string, "-%3$$d",   _("How to format the damage text. 1$ is health, 2$ is armor, 3$ is both"));
-AUTOCVAR_SAVE(cl_damagetext_color,              vector, '1 1 0',    _("Default damage text color"));
+AUTOCVAR_SAVE(cl_damagetext_color,              vector, '1 1 0',    _("Damage text color"));
 AUTOCVAR_SAVE(cl_damagetext_color_per_weapon,   bool,   false,      _("Damage text uses weapon color"));
 AUTOCVAR_SAVE(cl_damagetext_size,               float,  8,          _("Damage text font size"));
 AUTOCVAR_SAVE(cl_damagetext_alpha_start,        float,  1,          _("Damage text initial alpha"));