From 6ae60f9fc3db6ece55cf9280f3745d5ea7885613 Mon Sep 17 00:00:00 2001 From: otta8634 Date: Sun, 5 Jan 2025 19:54:11 +0800 Subject: [PATCH] Update Ammo Buff note Forgot to mention that it removes the need to reload. --- qcsrc/common/mutators/mutator/buffs/all.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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) -- 2.39.5