From 6b3545a8c4dfdea02145af24c585c2a19a93c1ff Mon Sep 17 00:00:00 2001 From: z411 Date: Wed, 21 Apr 2021 20:38:16 -0400 Subject: [PATCH] Temporary: Forcing blaster and shotgun to display in duel scoreboard --- qcsrc/client/hud/panel/scoreboard.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/hud/panel/scoreboard.qc b/qcsrc/client/hud/panel/scoreboard.qc index 66142f939..ed8342aa4 100644 --- a/qcsrc/client/hud/panel/scoreboard.qc +++ b/qcsrc/client/hud/panel/scoreboard.qc @@ -1360,7 +1360,7 @@ void Scoreboard_Duel_DrawTable(vector pos, bool invert, entity pl, entity tm) WepSet weapons_inmap = WepSet_GetFromStat_InMap(); FOREACH(Weapons, it != WEP_Null, { WepSet set = it.m_wepset; - if (!(weapons_inmap & set)) + if (!(weapons_inmap & set) && it != WEP_BLASTER && it != WEP_SHOTGUN) // z411 TODO : We'll be hardcoding this for now. continue; if (it.spawnflags & WEP_TYPE_OTHER) continue; -- 2.39.2