mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Merge branch 'drawpickups-spraycans' into 'master'
drawpickups: hide Spraycans, disable HUD tracking Closes #680 See merge request KartKrew/Kart!1496
This commit is contained in:
commit
753c6f414d
2 changed files with 2 additions and 1 deletions
|
|
@ -5435,7 +5435,7 @@ void K_drawKartHUD(void)
|
|||
K_drawKartPlayerCheck();
|
||||
|
||||
// nametags
|
||||
if (LUA_HudEnabled(hud_names))
|
||||
if (LUA_HudEnabled(hud_names) && cv_drawpickups.value)
|
||||
K_drawKartNameTags();
|
||||
|
||||
// Draw WANTED status
|
||||
|
|
|
|||
|
|
@ -3720,6 +3720,7 @@ boolean R_ThingVisible (mobj_t *thing)
|
|||
case MT_OVERLAY: // mostly capsule numbers :)))
|
||||
case MT_BATTLECAPSULE:
|
||||
case MT_BATTLECAPSULE_PIECE:
|
||||
case MT_SPRAYCAN:
|
||||
return false;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue