Advanced sessions, won't find full sessions

Hi there. Pretty much what the title says. I’m using the advanced sessions plugins and it won’t find any sessions that are full. If there is at least 1 spot open it will find it.

204140-screenshot+(54).png

The code after this just does a foreachloop node that adds the servers to a scroll box. Anyone know why it won’t find full sessions?

Got the exact same problem. Luckily I’m into C++. It will never work thanks to this:

	// @TODO Online - integrate this filter
	// SteamMatchmakingPtr->AddRequestLobbyListFilterSlotsAvailable( int nSlotsAvailable );

Found in FOnlineAsyncTaskSteamFindLobbiesBase::CreateQuery. Steam by default does not return full lobbies, and since this filter represents the capability we both seek - using steam subsystem means you’re not going to have full lobbies returned.

I cannot find where the null subsystem does that, but it doesn’t seem like it’s filtered on the searching machine, it’s probably done by the packet receiving machine that decides to keep quiet about it’s existence, but I could not confirm that.

While this option works for values higher than 0 (if I search for 2 or more slots and force this value to 2 it’s all ok), when you give it 0 it still does not return full lobbies. If someone has a solution, I’m listening.

bool FOnlineSessionNull::NeedsToAdvertise( FNamedOnlineSession& Session )

in OnlineSessionInterfaceNull.cpp is where it’s filtering full servers. It’s not overridable so I’m going to carry my own open slots variable in the session via SessionSettings->Set