]> git.rm.cloudns.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>
Wed, 13 Jul 2016 23:40:36 +0000 (01:40 +0200)
qcsrc/common/mutators/mutator/damagetext/damagetext.qc

index d4efe16bc3e21bfa87d13d36bd83f6d31ad64cdd..e85eea25ab11ecc6d3c764cc0fc95a4c8081829b 100644 (file)
@@ -13,7 +13,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}";
 }