Commit 972986c8 authored by nanahira's avatar nanahira

use room name instead of title for non-mycard server

parent 7cc59374
Pipeline #4849 failed with stages
in 60 minutes and 3 seconds
......@@ -6,7 +6,7 @@ server = null
room_data = (room)->
id: room.name,
title: room.title,
title: room.title || room.name,
user: {username: room.username}
users: ({username: client.name, position: client.pos} for client in room.players),
options: room.get_roomlist_hostinfo(), # Should be updated when MyCard client updates
......
......@@ -14,7 +14,7 @@
var client;
return {
id: room.name,
title: room.title,
title: room.title || room.name,
user: {
username: room.username
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment