Inital work on lobby.

This commit is contained in:
Håvar Aambø Fosstveit
2019-10-15 10:52:14 +02:00
parent 937f142c6e
commit 66a2becf63
7 changed files with 352 additions and 9 deletions
+2 -2
View File
@@ -391,11 +391,11 @@ export const setPeerVolume = (peerId, volume) =>
};
};
export const addLobbyPeer = (lobbyPeer) =>
export const addLobbyPeer = (peerId) =>
{
return {
type : 'ADD_LOBBY_PEER',
payload : { lobbyPeer }
payload : { peerId }
};
};