From: Mario Date: Sat, 12 Jun 2021 23:33:34 +0000 (+1000) Subject: Disable the translated name and icon of the Burning status effect, as it is not curre... X-Git-Tag: xonotic-v0.8.5~406 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6cba8ccca010b795495c799ea18b91762899bbdb;p=xonotic%2Fxonotic-data.pk3dir.git Disable the translated name and icon of the Burning status effect, as it is not currently displayed anywhere --- diff --git a/qcsrc/common/mutators/mutator/status_effects/status_effect/burning.qh b/qcsrc/common/mutators/mutator/status_effects/status_effect/burning.qh index 0b4994ce2..8935d49a2 100644 --- a/qcsrc/common/mutators/mutator/status_effects/status_effect/burning.qh +++ b/qcsrc/common/mutators/mutator/status_effects/status_effect/burning.qh @@ -10,8 +10,12 @@ SOUND(Burning_Remove, "desertfactory/steam_burst"); #endif CLASS(Burning, StatusEffects) ATTRIB(Burning, netname, string, "burning"); +#if 0 + // NOTE: status effect name and icon disabled as they are not displayed + // re-enable if status effects are given a visual element ATTRIB(Burning, m_name, string, _("Burning")); ATTRIB(Burning, m_icon, string, "buff_inferno"); +#endif ATTRIB(Burning, m_color, vector, '1 0.62 0'); ATTRIB(Burning, m_hidden, bool, true); ATTRIB(Burning, m_lifetime, float, 10);