From 5da7e1612ebba99b7f58af52120de57e6888fcef Mon Sep 17 00:00:00 2001 From: toaster Date: Fri, 1 Aug 2025 23:38:11 +0100 Subject: [PATCH] Don't show "position" in GT_TUTORIAL tab rankings, as everybody's in 1st place all the time --- src/y_inter.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/y_inter.cpp b/src/y_inter.cpp index 449324357..dae9175a9 100644 --- a/src/y_inter.cpp +++ b/src/y_inter.cpp @@ -735,7 +735,10 @@ void Y_PlayerStandingsDrawer(y_data_t *standings, INT32 xoffset) V_DrawMappedPatch(x, y, 0, resbar, NULL); - V_DrawRightAlignedThinString(x+13, y-2, 0, va("%d", standings->pos[i])); + if (gametype != GT_TUTORIAL) + { + V_DrawRightAlignedThinString(x+13, y-2, 0, va("%d", standings->pos[i])); + } //if (players[pnum].skincolor != SKINCOLOR_NONE) {