Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3868,12 +3868,8 @@ WindowMsgHandledType WOLGameSetupMenuSystem( GameWindow *window, UnsignedInt msg
NGMPGameSlot* pSlot = (NGMPGameSlot*)myGame->getSlot(i);
int64_t userBeingKicked = pSlot->m_userID;

NGMP_OnlineServices_LobbyInterface* pLobbyInterface = NGMP_OnlineServicesManager::GetInterface<NGMP_OnlineServices_LobbyInterface>();
if (pLobbyInterface != nullptr)
{
pLobbyInterface->UpdateCurrentLobby_KickUser(userBeingKicked, name);
}

pLobbyInterface->UpdateCurrentLobby_KickUser(userBeingKicked, name);
pLobbyInterface->UpdateCurrentLobby_SetSlotState(i, SlotState(pos)); // use what host selected
myGame->getSlot(i)->setState(SlotState(pos));
myGame->resetAccepted();

Expand Down
Loading