]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Extend docstring for cl_damagetext_format
authorFreddy <schro.sb@gmail.com>
Wed, 13 Jul 2016 23:40:36 +0000 (01:40 +0200)
committerFreddy <schro.sb@gmail.com>
Sat, 22 Oct 2016 20:13:02 +0000 (22:13 +0200)
qcsrc/common/mutators/mutator/damagetext/damagetext.qc

index 1ac69a47e78eb1880b6ca897479c911aadec40c3..6caef463814f861c00ef2f74eb809689948cc5ee 100644 (file)
@@ -8,7 +8,7 @@ REGISTER_MUTATOR(damagetext, true);
 #if defined(CSQC) || defined(MENUQC)
 // no translatable cvar description please
 AUTOCVAR_SAVE(cl_damagetext,                        bool,   true,       "Draw damage dealt where you hit the enemy");
-AUTOCVAR_SAVE(cl_damagetext_format,                 string, "-{total}", "How to format the damage text. {health}, {armor}, {total}");
+AUTOCVAR_SAVE(cl_damagetext_format,             string, "-{total}", "How to format the damage text. {health}, {armor}, {total}, {potential}");
 STATIC_INIT(DamageText_LegacyFormat) {
     if (strstrofs(autocvar_cl_damagetext_format, "{", 0) < 0) autocvar_cl_damagetext_format = "-{total}";
 }