I need a little help.
My game is giving me an error:
Got Error: You are unable to create room because there is already a room with the specified id
I get this error when Im trying to do this:
- Code: Select all
client.multiplayer.createJoinRoom(
"Test3", //Room id. If set to null a random roomid is used
"test", //The game type started on the server
false, //Should the room be hidden from the lobby?
{}, //Room data. This data is returned to lobby list. Variabels can be modifed on the server
{}, //User join data
handleJoin, //Function executed on successful joining of the room
handleError //Handle all other errors with the basic handler
);
But it all worked fine yesterday when I tested it out with couple of people. And when I log in and check server status I see no rooms opened.
If I change "Test3" to something else, it works. And yes, I know I will be usually giving a random id or something to rooms. However I am just wondering if Ive done something wrong now while things are simple, rather than try to fix them later when I have a bunch of code.
If needed I will cp more of mine code.
Regards,
Karlo