Issue Summary:
When i select quickplay or go to lobby browser no games show up.
When i filter on all it show up servers but Difficulty is empty.
The only way i can play my friends is through a steam invite.
Steps to Reproduce:
- Start official realm
- go to lobby browser
- Tada!!!
Reproduction Rate (Choose One):
Constant (100%)
Additional Information:
Oke i did some technical research on this issue. And i did look at the lobby_finder. This grabs all lobbies fine. But after research the lobby data i notice the big difference.
The difficulty variable wasnt lower case but was written as âDifficultyâ with a capatle.
I made a mod patch myself and this fixed the issue:
mod:hook(LobbyFinder, "lobbies", function(func, self)
mod:echo("LobbyFinder.lobbies()")
local lobbies = func(self)
for key, value in pairs(lobbies) do
local lobby = lobbies[key]
if lobby["Difficulty"] then
lobby["difficulty"] = lobby["Difficulty"]
end
end
return lobbies
end)
[Attach a Screenshot and/or Video Evidence]
VT2: https://steamcommunity.com/sharedfiles/filedetails/?id=1700699638
Extra:
Zaphio also told me this bug accour in VT1 to. Here a screenshot:
VT1: https://images-ext-1.discordapp.net/external/JDqhi08IluBkFWmSdg1WnkNjS-9jONtKb-KW2-JGDhM/https/cdn.discordapp.com/attachments/484696786846351360/554072605821501440/unknown.png?width=1214&height=703
Strange case:
I got two accounts and this bug only accours on my main account. You see the lobby_data responses over here per account.
Main account: https://steamcommunity.com/sharedfiles/filedetails/?id=1700877943
Second account: https://steamcommunity.com/sharedfiles/filedetails/?id=1700872354
Update from zaphio this same bug also accours in VT1:
Please contact me or Zaphio in the modding community.