From 5b155bcc48d41c05ec382e5dda3b59d70d3e35ec Mon Sep 17 00:00:00 2001 From: qwint Date: Sun, 16 Aug 2026 02:38:37 -0500 Subject: [PATCH] CommonClient: Match ServerLabel's team to other UIs (#5875) --- kvui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvui.py b/kvui.py index c92b53520f0..d02769dde04 100644 --- a/kvui.py +++ b/kvui.py @@ -370,7 +370,7 @@ class ServerLabel(HoverBehavior, MDTooltip, MDBoxLayout): ctx = self.ctx text = f"Connected to: {ctx.server_address}." if ctx.slot is not None: - text += f"\nYou are Slot Number {ctx.slot} in Team Number {ctx.team}, " \ + text += f"\nYou are Slot Number {ctx.slot} in Team Number {ctx.team + 1}, " \ f"named {ctx.player_names[ctx.slot]}." if ctx.items_received: text += f"\nYou have received {len(ctx.items_received)} items. " \