From 10d82afcc995f7b39220875e78d197cd41a0e18c Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 12 Apr 2023 17:39:43 +1000 Subject: [PATCH] Fix lobby votes (#15342) --- Content.Client/Lobby/LobbyState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 8774242cc6..9be0a7618a 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -93,7 +93,7 @@ namespace Content.Client.Lobby _gameTicker.LobbyStatusUpdated -= LobbyStatusUpdated; _gameTicker.LobbyLateJoinStatusUpdated -= LobbyLateJoinStatusUpdated; - _lobby!.VoteContainer.Orphan(); + _voteManager.ClearPopupContainer(); _lobby!.CharacterPreview.CharacterSetupButton.OnPressed -= OnSetupPressed; _lobby!.ReadyButton.OnPressed -= OnReadyPressed;