From: otta8634 Date: Sun, 5 Jan 2025 11:54:11 +0000 (+0800) Subject: Update Ammo Buff note X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6ae60f9fc3db6ece55cf9280f3745d5ea7885613;p=xonotic%2Fxonotic-data.pk3dir.git Update Ammo Buff note Forgot to mention that it removes the need to reload. --- diff --git a/qcsrc/common/mutators/mutator/buffs/all.inc b/qcsrc/common/mutators/mutator/buffs/all.inc index dc6fc52251..a4cca013d4 100644 --- a/qcsrc/common/mutators/mutator/buffs/all.inc +++ b/qcsrc/common/mutators/mutator/buffs/all.inc @@ -1,3 +1,5 @@ +#include + string Buff_CompatName(string buffname) { switch(buffname) @@ -25,8 +27,9 @@ CLASS(AmmoBuff, Buff) METHOD(AmmoBuff, describe, string(AmmoBuff this)) { TC(AmmoBuff, this); - return sprintf(_("The %s gives you infinite ammo until the buff expires, so you don't need to worry about running out of ammo"), - COLORED_NAME_WITH_CONCAT(this, _("Buff"))); + return sprintf(_("The %s gives you infinite ammo until the buff expires, so you don't need to worry about running out of ammo\n\n" + "It also removes the need to reload any weapons that require reloading, like the %s"), + COLORED_NAME_WITH_CONCAT(this, _("Buff")), COLORED_NAME(WEP_RIFLE)); } #endif ENDCLASS(AmmoBuff)