CustomRoomPropertiesForLobby is sending back NULL

Options
I'm trying to have my main menu have a server list show the list of all available servers/rooms to join. I'm trying to give each server the custom property to have a description to summarize the server's gamemode, rules, etc. The server is indeed created and shows up in the server's list on a separate client, but i can't seem to get the description to get sent over, no matter what I do. Any ideas? Thanks.

Client 1 creates the server w/ name & desc.
xyWEUuP.png

Client 2 previews server list and doesn't see custom description.
9KRqGjw.png

The 1 error says that the custom properties is null and has nothing in it.
YF41kAU.png

Creating server function
muGCbyL.png

Server list function
vxsnYri.png

Comments

  • JohnTube
    JohnTube ✭✭✭✭✭
    Options
    Hi @Blueeyesjt1,

    Replace
    CustomRoomPropertiesForLobby = new string[1] { desc },
    

    with
    CustomRoomPropertiesForLobby = new string[1] { "dsc" },
    
  • Blueeyesjt1
    Options
    JohnTube wrote: »
    CustomRoomPropertiesForLobby = new string[1] { "dsc" },
    

    Thank you SO much! That did the trick. So i assume the customPropertiesForLobby grabs from customProperties then. Again, thanks.