Skip to content

Commit 087c544

Browse files
authored
Guide: Managing Voice Chat (#7620)
* Guide: Managing Voice Chat Guide for making and managing voice chat when utilising lobbies. * Review updates.
1 parent 5e836ba commit 087c544

File tree

6 files changed

+327
-54
lines changed

6 files changed

+327
-54
lines changed

docs/discord-social-sdk/core-concepts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To implement the Discord Social SDK, developers for all platforms will generally
2828
- Implement [unified friends list](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list) and [relationships](/docs/discord-social-sdk/development-guides/managing-relationships).
2929
- Use [rich presence](/docs/discord-social-sdk/development-guides/setting-rich-presence) for game activity updates.
3030
- Set up [lobbies](/docs/discord-social-sdk/development-guides/managing-lobbies) for multiplayer interaction and [game invites](/docs/discord-social-sdk/development-guides/managing-game-invites).
31-
- Manage [direct message](/docs/discord-social-sdk/development-guides/sending-direct-messages), [linked channels](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list), and [voice communication](/docs/discord-social-sdk/development-guides/joining-voice-chat).
31+
- Manage [direct message](/docs/discord-social-sdk/development-guides/sending-direct-messages), [linked channels](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list), and [voice communication](/docs/discord-social-sdk/development-guides/managing-voice-chat).
3232
5. Handle events & API calls:
3333
- Listen for changes in friend lists, presence updates, and chat messages.
3434
- Use Discord's APIs to update statuses, send messages, and manage connections.
@@ -144,7 +144,7 @@ Users can communicate via direct messages (DMs) and voice calls:
144144
| Development Guides |
145145
|------------------------------------------------------------------------------------------------|
146146
| [Sending Direct Messages](/docs/discord-social-sdk/development-guides/sending-direct-messages) |
147-
| [Joining Voice Chat](/docs/discord-social-sdk/development-guides/joining-voice-chat) |
147+
| [Managing Voice Chat](/docs/discord-social-sdk/development-guides/managing-voice-chat) |
148148

149149
| Design Guidelines |
150150
|-------------------------------------------------------------------------------|

docs/discord-social-sdk/development-guides.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subpages:
1212
- development-guides/sending-direct-messages.mdx
1313
- development-guides/managing-lobbies.mdx
1414
- development-guides/linked-channels.mdx
15-
- development-guides/joining-voice-chat.mdx
15+
- development-guides/managing-voice-chat.mdx
1616
- development-guides/integrating-moderation.mdx
1717
- development-guides/debugging-logging.mdx
1818
- development-guides/using-with-discord-apis.mdx
@@ -64,7 +64,7 @@ If you are new to the Discord Social SDK, we recommend you start with the [Getti
6464
<Card title="Linked Channels" link="/docs/discord-social-sdk/development-guides/linked-channels" icon="TextControllerIcon">
6565
Connect game lobbies to Discord text channels.
6666
</Card>
67-
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat" icon="VoiceNormalIcon">
67+
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat" icon="VoiceNormalIcon">
6868
Add in-game voice communication.
6969
</Card>
7070
</Container>

docs/discord-social-sdk/development-guides/integrating-moderation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ auto call = client->StartCallWithAudioCallbacks(lobbyId, receivedCallback, captu
299299
icon="ChatIcon">
300300
Enable private messaging between players.
301301
</Card>
302-
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat"
302+
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat"
303303
icon="VoiceNormalIcon">
304304
Add in-game voice communication.
305305
</Card>

docs/discord-social-sdk/development-guides/joining-voice-chat.mdx

Lines changed: 0 additions & 46 deletions
This file was deleted.

docs/discord-social-sdk/development-guides/managing-lobbies.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ See our guide on [Linked Channels](/docs/discord-social-sdk/development-guides/l
159159

160160
---
161161

162-
## Joining Voice Chat
162+
## Managing Voice Chat
163163

164-
See our guide on [Joining Voice Chat](/docs/discord-social-sdk/development-guides/joining-voice-chat) for more information on how to start a voice call in a lobby.
164+
See our guide on [Managing Voice Chat](/docs/discord-social-sdk/development-guides/managing-voice-chat) for more information on how to start a voice call in a lobby.
165165

166166
---
167167

@@ -181,7 +181,7 @@ With your game able to create and manage lobbies, you can now implement addition
181181
<Card title="Managing Game Invites" link="/docs/discord-social-sdk/development-guides/managing-game-invites" icon="InboxIcon">
182182
Allow players to invite friends to join their game session or party.
183183
</Card>
184-
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat" icon="VoiceNormalIcon">
184+
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat" icon="VoiceNormalIcon">
185185
Add voice communication to your lobbies.
186186
</Card>
187187
<Card title="Linked Channels" link="/docs/discord-social-sdk/development-guides/linked-channels" icon="TextControllerIcon">

0 commit comments

Comments
 (0)