From 47c3439d21e963c68c0512f67d8507e18c495a4c Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Sun, 6 Jul 2025 23:11:29 -0400 Subject: [PATCH] Only draw control hints for yourself, stupid --- src/k_hud_track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud_track.cpp b/src/k_hud_track.cpp index 1f8268095..26c240916 100644 --- a/src/k_hud_track.cpp +++ b/src/k_hud_track.cpp @@ -462,7 +462,7 @@ std::optional object_tooltip(const mobj_t* mobj) case MT_PLAYER: { - if (stplyr->fastfall == 0 && K_CanSuperTransfer(stplyr)) + if (mobj->player == stplyr && stplyr->fastfall == 0 && K_CanSuperTransfer(stplyr)) return Tooltip( TextElement( TextElement().parse("").font(splitfont))