Simple Voice Chat Discord Bridge 图标

Minecraft 服务端插件

Simple Voice Chat Discord Bridge

A mod and plugin to make a bridge between Simple Voice Chat and Discord to allow for players without the mod to hear and speak.

冒险类社交类工具类bukkitfabricfolianeoforgepaperpurpurspigot
版本范围
1.16.5–26.2
下载量
23.5 万

插件介绍

⚠️ Feedback Wanted

I am looking for feedback on what Minecraft version and server platforms/loaders to support. Please fill out this short, anonymous Google Form: https://docs.google.com/forms/d/e/1FAIpQLSfhQhD9tSZK__N1GYHki1t2Zezd6WOd1IuKVqtAxlTQkZf4CA/viewform

Simple Voice Chat Discord Bridge

⚠️ Warning

This is not an official addon. Please don't go to the Simple Voice Chat discord server for support! Instead, please use GitHub issues for support. I'll try to provide support as soon as possible but there is no guarantee for how long it will take.

Simple Voice Chat Discord Bridge is a Simple Voice Chat addon for Fabric and Paper/Purpur that makes a bridge between Simple Voice Chat and Discord to allow for players without Simple Voice Chat installed on their client to hear and speak. For example, this addon allows Bedrock edition players connected through Geyser to use voice chat!

(For more information on the infrastructure of this project, such as the use of both GitHub and GitLab, scroll down to the last section.)

Installation and Usage

First, ensure that you have Simple Voice Chat installed and correctly configured. Please refer to the Simple Voice Chat wiki for more info.

ℹ️ Note

Simple Voice Chat Discord Bridge requires version 2.4.11 or later of Simple Voice Chat. Please ensure you have updated!

Then, you'll want to download the latest version of Simple Voice Chat Discord Bridge that is compatible with your Minecraft version.

ℹ️ Note

If you are using the Fabric mod, it requires the Fabric API.

Finding the configuration file

Make sure to run your server once with Simple Voice Chat and Simple Voice Chat Discord Bridge installed to generate Simple Voice Chat Discord Bridge's configuration file.

Fabric: Simple Voice Chat Discord Bridge's configuration file should be located at config/voicechat-discord.yml.

Paper/Purpur: Simple Voice Chat Discord Bridge's configuration file should be located at plugins/voicechat-discord/config.yml.

Setting up a bot

First, create an application at discord.com/developers/applications by clicking New Application at the top right. Choose the name that you want your bot to be called.

On the left, click Bot. Copy the token by clicking Reset Token. After resetting the token, there should be a Copy button.

Now, open the configuration file with a text editor. Replace DISCORD_BOT_TOKEN_HERE with the token you copied. It should look something like this:

bots:
    - token: TheTokenYouJustPasted
      vc_id: VOICE_CHANNEL_ID_HERE

Next, click Installation on the left. Change Install Link from Discord Provided Link to None.

Next, click Bot on the left. Scroll down and disable disable Public Bot.

Finally, click General Information on the left and copy the Application ID.

In your browser, go to discord.com/api/oauth2/authorize?client_id=YOUR_APPLICATION_ID_HERE&permissions=36700160&scope=bot but replace YOUR_APPLICATION_ID_HERE with the application ID you just copied. Choose the server you want to invite your bot to. Make sure not to disable any of its permissions.

Now, follow the steps at support.discord.com/articles/Where-can-I-find-my-User-Server-Message-ID to enable Developer Mode in Discord. Then, right click the voice channel you want the bot to use as a bridge between Simple Voice Chat and Discord and click Copy ID.

⚠️ Warning

There cannot be more than one person speaking in the voice channel at a time, or there will be weird audio glitches. We recommend limiting bot voice channels to 2 users to ensure that this does not cause an issue.

Now, reopen the configuration file with a text editor. Replace VOICE_CHANNEL_ID_HERE with the channel ID you copied. It should look something like this:

bots:
    - token: TheTokenYouJustPasted
      vc_id: TheChannelIDYouJustPasted

You can redo this process for however many bots you want. There is some info in the configuration file about having multiple bots.

ℹ️ Note

The amount of bots you have is equivalent to the amount of people who can be connected to Simple Voice Chat through Discord at one time. So if you have 3 bots, up to 3 people can use the addon at the same time.

Troubleshooting

If you run into errors while trying to use a bot, please read the console. The errors will always include the vc_id of the bot, which allows you to identify which bot caused the error.

Using it in-game

⚠️ Warning

There cannot be more than one person speaking in the voice channel at a time, or there will be weird audio glitches. We recommend limiting bot voice channels to 2 users to ensure that this does not cause an issue.

Most of Simple Voice Chat Discord Bridge's functionality is exposed through the /dvc command. This section will go through all of its subcommands.

For commands that take string arguments, you can wrap them in quotes to escape spaces.

/dvc start

Starts a voice chat session using the first available bot. You may have to wait a few seconds for it to start. After it starts, join the voice channel as instructed. You should be able to hear players speak, and other players should be able to hear you speak.

If you are having issues while in a voice chat session, you can try restarting it by using /dvc start again.

/dvc stop

Stops the current voice chat session and disconnects the bot.

/dvc group

Allows you to list, create, join, leave and remove groups.

/dvc group list

Gives you a list of all groups.

/dvc group create <name> [password] [type] [persistent]

Allows you to create a group.

Arguments:

  • name (required): The name of the group.
  • password (optional, defaults to "" (no password)): The password of the group. If you don't want a password but want to change the group type or persistency, just pass an empty string: ""
  • type (optional, defaults to normal): Can be normal, open or isolated.
    • normal: Players in a group can hear nearby players that are not in a group, but not vice versa
    • open: Players in a group can hear nearby players and nearby players can hear players in the group
    • isolated: Players in a group can only hear other players in the group
  • persistent (optional, defaults to false): If true, the group will not be removed once all players leave. Instead, it has to be removed using /dvc group remove <ID>

/dvc group join <ID>

Allows you to join a group using an ID from /dvc group list.

/dvc group info

Gives you info about your current group.

/dvc group leave

Allows you to leave your current group.

/dvc group remove <ID>

Allows you to remove a persistent group with no players in it using an ID from /dvc group list.

/dvc togglewhisper

Allows you to whisper.

/dvc reloadconfig

If you are a operator (specifically permission level 2 or higher on fabric) or if you have the voicechat-discord.reload-config permission, you can use the /dvc reloadconfig subcommand to reload the config without have to reload/restart the server. Using this subcommand will stop all running bots.

Project Infrastructure

Source code and development is done on GitLab at https://gitlab.com/amsam0/voicechat-discord.

However, because there are a lot more users with GitHub accounts than GitLab accounts, bug reports, feature requests, and general support is done through GitHub at https://github.com/amsam0/voicechat-discord/issues.

In addition, GitHub Actions is used to build and release the addon because I can't be bothered to migrate to GitLab CI. The workflow files are in the GitHub repository at https://github.com/amsam0/voicechat-discord, and you can view workflow run results at https://github.com/amsam0/voicechat-discord/actions. (While using GitHub Actions to clone the GitLab repository arguably reduces security, the GitHub Actions workflows upload the Git repository used to build the release as an artifact to allow for independent analysis. The sha256 hashes of all files and the output of git log is also logged.)

版本与下载

推荐下载

1.21.9-1.21.9-3.2.0.jar版本 neoforge-1.21.9-3.2.0 · 34.1 KBSHA-1 f00e686a3b4ad389c5ab5ade1a75ff42c3c1e756下载 1.21.9-1.21.9-3.2.0.jar

neoforge-1.21.9-3.2.0

正式版
加载器
neoforge
MC 版本
1.21.9 · 1.21.10
1.21.9-1.21.9-3.2.0.jar34.1 KBSHA-1 f00e686a3b4ad389c5ab5ade1a75ff42c3c1e756获取文件 1.21.9-1.21.9-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.9, 1.21.10

neoforge-1.20.5-3.2.0

正式版
加载器
neoforge
MC 版本
1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
1.20.5-1.20.5-3.2.0.jar34.1 KBSHA-1 ea9550e0a5ccfbfeb43d1ca646d0685014e42266获取文件 1.20.5-1.20.5-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.20.5, 1.20.6, 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.7, 1.21.8

fabric-1.21.5-3.2.0

正式版
加载器
fabric
MC 版本
1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-fabric-1.21.5-3.2.0.jar23.3 MBSHA-1 faa9f76a0ec97a44a258f8f4443e904bb1c51f55获取文件 voicechat-discord-fabric-1.21.5-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10

neoforge-1.21.11-3.2.0

正式版
加载器
neoforge
MC 版本
1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
1.21.11-1.21.11-3.2.0.jar34.2 KBSHA-1 e144af79b322bea0411b88a8b4d816f64c394e33获取文件 1.21.11-1.21.11-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.11, 26.1, 26.1.1, 26.1.2, 26.2

fabric-1.21.11-3.2.0

正式版
加载器
fabric
MC 版本
1.21.11
voicechat-discord-fabric-1.21.11-3.2.0.jar23.3 MBSHA-1 90c79aac69faf584c6e25fa10abf05cff88f1804获取文件 voicechat-discord-fabric-1.21.11-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.11

fabric-1.21.2-3.2.0

正式版
加载器
fabric
MC 版本
1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-fabric-1.21.2-3.2.0.jar23.3 MBSHA-1 046fb0c627f9b9e2c8e4ec225d23c4a9a40fffc0获取文件 voicechat-discord-fabric-1.21.2-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4

fabric-26.1-3.2.0

正式版
加载器
fabric
MC 版本
26.1 · 26.1.1 · 26.1.2 · 26.2
voicechat-discord-fabric-26.1-3.2.0.jar23.3 MBSHA-1 38443da35929ff05bfc6d6229ec5965305e02645获取文件 voicechat-discord-fabric-26.1-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 26.1, 26.1.1, 26.1.2, 26.2

paper-3.2.0

正式版
加载器
folia · paper · purpur
MC 版本
1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
voicechat-discord-paper-3.2.0.jar23.3 MBSHA-1 146522b9afe575243222f6835567e448847a1db1获取文件 voicechat-discord-paper-3.2.0.jar

fabric-1.19.2-3.2.0

正式版
加载器
fabric
MC 版本
1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
voicechat-discord-fabric-1.19.2-3.2.0.jar23.3 MBSHA-1 af0fdb12de6b522f5628800db33f1e29cf5e418e获取文件 voicechat-discord-fabric-1.19.2-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1

fabric-1.16.5-3.2.0

正式版
加载器
fabric
MC 版本
1.16.5 · 1.18.2
voicechat-discord-fabric-1.16.5-3.2.0.jar23.3 MBSHA-1 2b78335a7eebb34a16159f454cf46905ff75dfa3获取文件 voicechat-discord-fabric-1.16.5-3.2.0.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2

  • Add support for Minecraft versions 26.1, 26.1.1, 26.1.2, and 26.2
  • Add NeoForge support for Minecraft versions 1.20.5-26.2 (this has been implemented for a while, but I never got around to releasing it)
  • Drop support for the following Minecraft versions on Paper: 1.16.5, 1.18.2, 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4
    • If you need to use any of these versions on Paper, please make an issue on GitHub
  • Internal changes:
    • Switch to Mojang mappings on Fabric
    • Build without obfuscation on Paper (this is why we had to drop support for Minecraft versions below 1.20.5)
    • Use voicechat_api mod ID instead of voicechat mod ID for checking required voicechat API version on Fabric and NeoForge

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.4...3.2.0

GitHub Actions workflow changes: https://github.com/amsam0/voicechat-discord/compare/3.1.2...3.2.0

fabric-1.19.2-3.1.4

正式版
加载器
fabric
MC 版本
1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
voicechat-discord-fabric-1.19.2-3.1.4.jar23.4 MBSHA-1 9c5c2ec99d7a541545b26bfa519054dfef11f2f2获取文件 voicechat-discord-fabric-1.19.2-3.1.4.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1

fabric-1.21.5-3.1.4

正式版
加载器
fabric
MC 版本
1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-fabric-1.21.5-3.1.4.jar23.4 MBSHA-1 d53a106356f7ae9b2d873bf2171d5a8993f4b974获取文件 voicechat-discord-fabric-1.21.5-3.1.4.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10

fabric-1.21.2-3.1.4

正式版
加载器
fabric
MC 版本
1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-fabric-1.21.2-3.1.4.jar23.4 MBSHA-1 f2026c615b763f67c2a5c304b510fafb0ffccbef获取文件 voicechat-discord-fabric-1.21.2-3.1.4.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4

fabric-1.21.11-3.1.4

正式版
加载器
fabric
MC 版本
1.21.11
voicechat-discord-fabric-1.21.11-3.1.4.jar23.4 MBSHA-1 2233a9f26a87733dbe7960ceb862ffbee6594460获取文件 voicechat-discord-fabric-1.21.11-3.1.4.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.11

fabric-1.16.5-3.1.4

正式版
加载器
fabric
MC 版本
1.16.5 · 1.18.2
voicechat-discord-fabric-1.16.5-3.1.4.jar23.4 MBSHA-1 ab02e7eb167770b2ae2c8b5e7fad3b9ab6e2bdfa获取文件 voicechat-discord-fabric-1.16.5-3.1.4.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2

paper-3.1.4

正式版
加载器
folia · paper · purpur
MC 版本
1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
voicechat-discord-paper-3.1.4.jar23.4 MBSHA-1 964512fe1bf234be0007db2b2bebed77177edf03获取文件 voicechat-discord-paper-3.1.4.jar
展开更新日志
  • Updated songbird to the next branch. This should fix any issues with DAVE.
  • Switched to opus2 Rust crate. As we already updated to Opus 1.5.2, this shouldn't change anything.

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.3...3.1.4

GitHub Actions workflow changes: None

fabric-1.16.5-3.1.3

正式版
加载器
fabric
MC 版本
1.16.5 · 1.18.2
voicechat-discord-fabric-1.16.5-3.1.3.jar24.1 MBSHA-1 7f613f7883b96b9ac79a35b9314c3fb10b2cf27e获取文件 voicechat-discord-fabric-1.16.5-3.1.3.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2

fabric-1.21.11-3.1.3

正式版
加载器
fabric
MC 版本
1.21.11
voicechat-discord-fabric-1.21.11-3.1.3.jar24.2 MBSHA-1 71ed5975f815c95a812776f66fb3a98cb0444b47获取文件 voicechat-discord-fabric-1.21.11-3.1.3.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.11

fabric-1.21.5-3.1.3

正式版
加载器
fabric
MC 版本
1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-fabric-1.21.5-3.1.3.jar24.1 MBSHA-1 e004a878650c6c12c3878cd2ec0651d849507628获取文件 voicechat-discord-fabric-1.21.5-3.1.3.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10

fabric-1.21.2-3.1.3

正式版
加载器
fabric
MC 版本
1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-fabric-1.21.2-3.1.3.jar24.1 MBSHA-1 d985563ffaef2cb19dbbb84e14a0470529b6dcaa获取文件 voicechat-discord-fabric-1.21.2-3.1.3.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4

fabric-1.19.2-3.1.3

正式版
加载器
fabric
MC 版本
1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
voicechat-discord-fabric-1.19.2-3.1.3.jar24.1 MBSHA-1 3be6fee033f19d6da9a004c8513cba7606af17fe获取文件 voicechat-discord-fabric-1.19.2-3.1.3.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1

paper-3.1.3

正式版
加载器
folia · paper · purpur
MC 版本
1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
voicechat-discord-paper-3.1.3.jar24.1 MBSHA-1 54adb2dbae5241a9e74bfd83fb75688e19950b18获取文件 voicechat-discord-paper-3.1.3.jar
展开更新日志
  • Updated songbird to PR #291 to add support for DAVE in Discord voice calls.

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.2+build-fix...3.1.3

GitHub Actions workflow changes: None

fabric-1.21.2-3.1.2

正式版
加载器
fabric
MC 版本
1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-fabric-1.21.2-3.1.2.jar21.6 MBSHA-1 37599662765a4cfab45171ef1bc6adaea885a912获取文件 voicechat-discord-fabric-1.21.2-3.1.2.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4

fabric-1.21.11-3.1.2

正式版
加载器
fabric
MC 版本
1.21.11
voicechat-discord-fabric-1.21.11-3.1.2.jar21.6 MBSHA-1 2c391e4beb83ce6fe4ec66a3fa5418b926183857获取文件 voicechat-discord-fabric-1.21.11-3.1.2.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.11

fabric-1.21.5-3.1.2

正式版
加载器
fabric
MC 版本
1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-fabric-1.21.5-3.1.2.jar21.6 MBSHA-1 6c1eb4cf8cbf1e427fbe2d26bad7d970b28f2681获取文件 voicechat-discord-fabric-1.21.5-3.1.2.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10

fabric-1.19.2-3.1.2

正式版
加载器
fabric
MC 版本
1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
voicechat-discord-fabric-1.19.2-3.1.2.jar21.6 MBSHA-1 7ea38cb4a5502e504ade94c6b49dceb9c3690207获取文件 voicechat-discord-fabric-1.19.2-3.1.2.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1

fabric-1.16.5-3.1.2

正式版
加载器
fabric
MC 版本
1.16.5 · 1.18.2
voicechat-discord-fabric-1.16.5-3.1.2.jar21.6 MBSHA-1 7fcffc0f52b94c09d5bdf7b33674bf2b58ab45eb获取文件 voicechat-discord-fabric-1.16.5-3.1.2.jar
展开更新日志

Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2

paper-3.1.2

正式版
加载器
folia · paper · purpur
MC 版本
1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
voicechat-discord-paper-3.1.2.jar21.5 MBSHA-1 5d8a0785f91778ede84b7bbf56fa40889ac1e942获取文件 voicechat-discord-paper-3.1.2.jar
展开更新日志
  • Fixed the infamous issue of needing a newer glibc than is available on old LTS Linux distributions (#144, #63, #106)
    • The minimum glibc version is now 2.26; if anyone needs lower than this, just make a GitHub issue. However, note that glibc 2.26 was released in 2017...
  • Renamed the Rust log file (previously logs/voicechat-discord.log) to logs/voicechat-discord.txt.
  • Updated various URLs to use the GitLab repo instead of the GitHub repo.
  • Fixed a copy of slf4j being included in the jar.
  • Moved SVC version checking code to Paper because it is unnecessary on Fabric.
  • Fixed checking if a player is an operator if the server has a non-default op permission level configured on Fabric.
  • Refactored Fabric codebase to use source templates when version specific code is needed instead of a messy version specific class.
  • Fabric versions that produce an identical jar will now be combined to reduce the number of jars that are built.
  • Fixed Fabric API dependency on 1.16.5 by using the legacy mod ID.
  • Fixed Folia not being marked as supported.
  • Added support for 1.21.11.

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.1...3.1.2+build-fix

GitHub Actions workflow changes: https://github.com/amsam0/voicechat-discord/compare/3.1.1...3.1.2

paper-3.1.1

正式版
加载器
paper · purpur
MC 版本
1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-paper-3.1.1.jar21.7 MBSHA-1 8d58811b9254ca97282bef86299b7129fb6d6c3c获取文件 voicechat-discord-paper-3.1.1.jar

fabric-1.18.2-3.1.1

正式版
加载器
fabric
MC 版本
1.18.2
voicechat-discord-fabric-1.18.2-3.1.1.jar21.7 MBSHA-1 1b5e43ba702114eeb5340988124026962065f5de获取文件 voicechat-discord-fabric-1.18.2-3.1.1.jar
展开更新日志
  • Minecraft versions 1.16.5, 1.18.2, 1.19.2, 1.20.x, and 1.21.x are now supported.
  • On Paper, reflection is no longer used to get entity positions when calculating distance. This was mainly done to make it easier to support the aforementioned wide range of Minecraft versions with a single jar.
  • Folia is now supported.
  • Some dependencies were removed in order to reduce jar size.
    • The SemVer dependency we were using was replaced by a simple version parser.
    • The gson dependency we were using was removed because it was not being used.
  • Fixed a bug with opus decoder resets that caused them to never occur.
  • Edge cases when logging in to a Discord bot that used to cause crashes are now handled cleanly. (#126)
  • The whisper_distance SVC config option is now properly supported. (#140)
  • Rust logs are now added to logs/voicechat-discord.log.
  • Some error messages were improved.
  • A few other internal improvements.

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.0.13...3.1.1

paper-3.0.12

正式版
加载器
paper · purpur
MC 版本
1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8 · 1.21.9 · 1.21.10
voicechat-discord-paper-3.0.12.jar21.7 MBSHA-1 1ead152e0ad1744fd703c3561df1fbe26539e132获取文件 voicechat-discord-paper-3.0.12.jar
展开更新日志
  • Minecraft versions 1.21.9 and 1.21.10 are now supported.
  • There is now a separate Fabric jar for each Minecraft version.
  • Adventure usage has been removed. This allows us to remove the messy code used to convert Adventure messages to Minecraft messages on Fabric, and generally just reduces code complexity and increases performance.
  • The update checker has been completely removed.
  • Opus has been updated to 1.5.2.
  • The bot setup guide has been updated. Previously broken images have been fixed.
  • Miscellaneous internal improvements.

Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.0.11...3.0.12

3.0.11

正式版
加载器
fabric
MC 版本
1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8
voicechat-discord-fabric-3.0.11.jar22.4 MBSHA-1 75357549125df05655eb2ebc5781a96432ee7990获取文件 voicechat-discord-fabric-3.0.11.jar
展开更新日志

  • The supported Minecraft versions have been drastically narrowed down.
    • We now support:
      • 1.19.2
      • 1.20.1
      • 1.21.1
      • 1.21.4
      • 1.21.5 (newly supported)
      • 1.21.8 (newly supported)
    • All other Minecraft versions are not considered supported. This list is based on Simple Voice Chat's supported versions. Future releases will follow any changes made to that list of supported versions.
    • Thanks to the smaller range of supported Minecraft versions, manually testing all supported versions is now feasible, and all versions have been tested on both Fabric and Paper.
  • The update checker has been simplified and improved so that it will be resilient if major changes such as releasing a separate jar for every supported Minecraft version (as opposed to the current method of releasing a single jar for all supported versions) are made in the future.
  • Log messages on Fabric are now prefixed with [voicechat-discord].
  • Attempting to shut down natives that have not been loaded will no longer cause the plugin to fail to shut down.
  • The Fabric Permissions API has been upgraded to version 0.3.3 in order to fix compatibility issues with recent Minecraft versions.
  • Due to recent GitHub deprecations, Linux natives will now be built on Ubuntu 22.04. This means that there may be errors on hosting providers using old glibc versions. If you encounter this issue, please see this StackOverflow post.

Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.10...3.0.11

3.0.11

正式版
加载器
paper · purpur
MC 版本
1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8
voicechat-discord-paper-3.0.11.jar22.7 MBSHA-1 4d0dad2c9e836166bfe22231259ae47bb34ae419获取文件 voicechat-discord-paper-3.0.11.jar
展开更新日志
  • The supported Minecraft versions have been drastically narrowed down.
    • We now support:
      • 1.19.2
      • 1.20.1
      • 1.21.1
      • 1.21.4
      • 1.21.5 (newly supported)
      • 1.21.8 (newly supported)
    • All other Minecraft versions are not considered supported. This list is based on Simple Voice Chat's supported versions. Future releases will follow any changes made to that list of supported versions.
    • Thanks to the smaller range of supported Minecraft versions, manually testing all supported versions is now feasible, and all versions have been tested on both Fabric and Paper.
  • The update checker has been simplified and improved so that it will be resilient if major changes such as releasing a separate jar for every supported Minecraft version (as opposed to the current method of releasing a single jar for all supported versions) are made in the future.
  • Log messages on Fabric are now prefixed with [voicechat-discord].
  • Attempting to shut down natives that have not been loaded will no longer cause the plugin to fail to shut down.
  • The Fabric Permissions API has been upgraded to version 0.3.3 in order to fix compatibility issues with recent Minecraft versions.
  • Due to recent GitHub deprecations, Linux natives will now be built on Ubuntu 22.04. This means that there may be errors on hosting providers using old glibc versions. If you encounter this issue, please see this StackOverflow post.

Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.10...3.0.11

3.0.10

正式版
加载器
fabric
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-fabric-3.0.10.jar22.5 MBSHA-1 06c18ee2da87c68b884fef0fcdf4f84e6593dc98获取文件 voicechat-discord-fabric-3.0.10.jar
展开更新日志

  • Fix a crash that could occur when initializing the Tokio runtime with only one core
  • Prevent initializing and then immediately shutting down the Tokio runtime on shutdown

Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.9...3.0.10

3.0.10

正式版
加载器
paper · purpur
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
voicechat-discord-paper-3.0.10.jar22.8 MBSHA-1 daa22cd9cd2fa6cccbc81d5df7da149576bbab36获取文件 voicechat-discord-paper-3.0.10.jar
展开更新日志
  • Fix a crash that could occur when initializing the Tokio runtime with only one core
  • Prevent initializing and then immediately shutting down the Tokio runtime on shutdown

Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.9...3.0.10

3.0.5

正式版
加载器
paper · purpur
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3
voicechat-discord-paper-3.0.5.jar22.7 MBSHA-1 33560ae663380366ab2d353118d6d39e58ec56d3获取文件 voicechat-discord-paper-3.0.5.jar
展开更新日志
  • Add thread names to make future debugging easier
  • Try to reduce tokio runtime overhead while idle

Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.4...3.0.5

3.0.2

正式版
加载器
fabric
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
voicechat-discord-fabric-3.0.2.jar22.1 MBSHA-1 664ac3aaecd97dae9fe6f21af1ccc2bd0361eb12获取文件 voicechat-discord-fabric-3.0.2.jar
展开更新日志

  • (Paper) Fix the bot not disconnecting from Discord when the player leaves the game (#57)
    • This also fixes issues with the update checker not alerting operators of an update on Paper
  • Fix the bot not disconnecting from Discord when the server stops
  • (Fabric) Fix the addon's shutdown process blocking the server from shutting down
  • Add failsafe if an error occurs during the bot stop process

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.1...3.0.2

3.0.2

正式版
加载器
paper · purpur
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
voicechat-discord-paper-3.0.2.jar22.5 MBSHA-1 9bebcbaa17b86e9c7081d732516f9c6e7423d81d获取文件 voicechat-discord-paper-3.0.2.jar
展开更新日志
  • (Paper) Fix the bot not disconnecting from Discord when the player leaves the game (#57)
    • This also fixes issues with the update checker not alerting operators of an update on Paper
  • Fix the bot not disconnecting from Discord when the server stops
  • (Fabric) Fix the addon's shutdown process blocking the server from shutting down
  • Add failsafe if an error occurs during the bot stop process

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.1...3.0.2

3.0.0

正式版
加载器
fabric
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
voicechat-discord-fabric-3.0.0.jar21.5 MBSHA-1 f8a9c1801d7399fd3ad87ae8886c7bdb334b7179获取文件 voicechat-discord-fabric-3.0.0.jar
展开更新日志

  • Major internal changes, which should result in better stability and performance
    • The JDA Java discord library is no longer used and it has been replaced by the Serenity and Songbird Rust discord libraries
    • This means that the plugin requires some native libraries, which unfortunately increased the JAR size
    • The advantage is that SSL is bundled with the libraries instead of requiring Java's SSL, fixing #11
    • The new implementation should be faster and less prone to getting into a buggy state
  • Many fixes to fix support for 1.20.3 and later
    • On the Fabric side, usage of JSON to convert between adventure and native component classes was removed. Now, components are manually converted which should be much more robust and slightly more performant
    • On the Paper side, in 1.20.6 and later, the new Commands API is used, and in <1.20.6, reflection is used in more places due to Paperweight's new mapping behavior breaking stuff
  • Require Java 21 (the addon still supports 1.19.4)

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.1...3.0.0

3.0.0

正式版
加载器
paper · purpur
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
voicechat-discord-paper-3.0.0.jar21.8 MBSHA-1 095a1f3f0f2b515e8ec1780c11e80ca38661b128获取文件 voicechat-discord-paper-3.0.0.jar
展开更新日志
  • Major internal changes, which should result in better stability and performance
    • The JDA Java discord library is no longer used and it has been replaced by the Serenity and Songbird Rust discord libraries
    • This means that the plugin requires some native libraries, which unfortunately increased the JAR size
    • The advantage is that SSL is bundled with the libraries instead of requiring Java's SSL, fixing #11
    • The new implementation should be faster and less prone to getting into a buggy state
  • Many fixes to fix support for 1.20.3 and later
    • On the Fabric side, usage of JSON to convert between adventure and native component classes was removed. Now, components are manually converted which should be much more robust and slightly more performant
    • On the Paper side, in 1.20.6 and later, the new Commands API is used, and in <1.20.6, reflection is used in more places due to Paperweight's new mapping behavior breaking stuff
  • Require Java 21 (the addon still supports 1.19.4)

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.1...3.0.0

2.1.1

正式版
加载器
fabric
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2
voicechat-discord-fabric-2.1.1.jar12.3 MBSHA-1 bcc633cd733d404afd5b0f0c7c103e9b8a52bf58获取文件 voicechat-discord-fabric-2.1.1.jar
展开更新日志

  • (Fabric) Fixed #25 - /dvc now works correctly on 1.20+! Sorry this took so long to fix; I actually fixed it almost a month ago but never made a release.
  • Fixed a minor punctuation issue with the message about Simple Voice Chat not being new enough
  • Increased minimum Minecraft version to 1.19.4 from 1.19.2

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.0...2.1.1

2.1.1

正式版
加载器
paper · purpur
MC 版本
1.19.4 · 1.20 · 1.20.1 · 1.20.2
voicechat-discord-paper-2.1.1.jar12.8 MBSHA-1 a711d5265234c939c48e5acec0e6efbb915ddf35获取文件 voicechat-discord-paper-2.1.1.jar
展开更新日志
  • (Fabric) Fixed #25 - /dvc now works correctly on 1.20+! Sorry this took so long to fix; I actually fixed it almost a month ago but never made a release.
  • Fixed a minor punctuation issue with the message about Simple Voice Chat not being new enough
  • Increased minimum Minecraft version to 1.19.4 from 1.19.2

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.0...2.1.1

2.1.0

正式版
加载器
fabric
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-fabric-2.1.0.jar12.4 MBSHA-1 ff4b29147f38222f0ca868e94f358cd3d3c7efec获取文件 voicechat-discord-fabric-2.1.0.jar
展开更新日志

This update has some new features and bugfixes. The minimum Simple Voice Chat version has been increased to 2.4.11.

  • Reduce volume of whispering players in the audio that goes to discord
  • Don't allow players to use /dvc group when groups are disabled
  • Fixed tab complete on Paper
  • Switch to using adventure and minimessage for messages. This means that we no longer use the legacy formatting codes, and some messages will have colors in the console!

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.1...2.1.0

2.1.0

正式版
加载器
paper · purpur
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-paper-2.1.0.jar12.7 MBSHA-1 3f1d4d7a6d215e120c923793b84465c471a23d44获取文件 voicechat-discord-paper-2.1.0.jar
展开更新日志

This update has some new features and bugfixes. The minimum Simple Voice Chat version has been increased to 2.4.11.

  • Reduce volume of whispering players in the audio that goes to discord
  • Don't allow players to use /dvc group when groups are disabled
  • Fixed tab complete on Paper
  • Switch to using adventure and minimessage for messages. This means that we no longer use the legacy formatting codes, and some messages will have colors in the console!

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.1...2.1.0

2.0.1

正式版
加载器
paper · purpur
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-paper-2.0.1.jar11.7 MBSHA-1 6c6995dfd6531dcdfd9575f79107f7deb98e8f2f获取文件 voicechat-discord-paper-2.0.1.jar
展开更新日志

This update fixes one of the major issues with 2.0.0. If you are on Fabric, you probably didn't experience it, but you should still update because of the other fixes and improvements.

  • Fixed #22
  • Switch to a simpler volume adjustment method. While this seems to work fine, please report any issues with the audio going to Discord!
  • Slight improvement: packets with a volume less than or equal to 0 (which ends up being silent) won't be sent to Discord. This can happen when we receive packets out of the distance of the player
  • Improve reset watcher to be slower, this may fix some audio related issues
  • Make NMS usage and reflection on Paper safer and hopefully future proof it more

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.0...2.0.1

2.0.1

正式版
加载器
fabric
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-fabric-2.0.1.jar11.8 MBSHA-1 2b6df671977fb1c0b8df4c485630f44933066336获取文件 voicechat-discord-fabric-2.0.1.jar
展开更新日志

This update fixes one of the major issues with 2.0.0. If you are on Fabric, you probably didn't experience it, but you should still update because of the other fixes and improvements.

  • Fixed #22
  • Switch to a simpler volume adjustment method. While this seems to work fine, please report any issues with the audio going to Discord!
  • Slight improvement: packets with a volume less than or equal to 0 (which ends up being silent) won't be sent to Discord. This can happen when we receive packets out of the distance of the player
  • Improve reset watcher to be slower, this may fix some audio related issues
  • Make NMS usage and reflection on Paper safer and hopefully future proof it more

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.0...2.0.1

2.0.0

正式版
加载器
fabric
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-fabric-2.0.0.jar11.8 MBSHA-1 11c790c12575a2cce035dec25e5143ca0ad8c5d2获取文件 voicechat-discord-fabric-2.0.0.jar
展开更新日志

Huge thanks to Totobird for being a huge help with this update! Their PR was the main reason I started working on it again.

  • All commands have been moved to subcommands on the /dvc command
    • See https://github.com/naturecodevoid/voicechat-discord#using-it-in-game for docs
    • /startdiscordvoicechat was moved to /dvc start
      • Running /dvc start while in a voice chat session restarts the session
    • New subcommand: /dvc stop
      • Only usable while currently in a discord voice chat session
      • Disconnects the bot and stops the session
    • New subcommand: /dvc group
    • New subcommand: /dvc togglewhisper
      • Allows mod users to whisper
    • New subcommand: /dvc reloadconfig
      • Only usable by operators or players with the voicechat-discord.reload-config permission
      • Stops all sessions and reloads the config
    • New subcommand: /dvc checkforupdate
      • Only usable by operators
      • Checks for a new update using the GitHub API. If one is found, finds the version on Modrinth and links to the version page.
  • Group support (/dvc group)
  • Whispering support (/dvc togglewhisper)
  • Added support for people using the mod to hear static/entity/locational audio channels
  • Use the new audio sender API to improve compatibility with other addons
  • [Fabric only] Use the Fabric Permissions API to support mods like LuckPerms for the reload config permission
  • Added version checker to ensure the plugin/mod is updated
  • Added Simple Voice Chat version checker to ensure we have a new enough version of the mod
  • Hopefully fixed #5
  • Better login failure error handling and logging
  • Improvements to messages sent to players to be more clear
  • Optional debug logging to hopefully help with debugging issues
  • Major refactors and command handling improvements

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.4.0...2.0.0

2.0.0

正式版
加载器
paper · purpur
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
voicechat-discord-paper-2.0.0-dev-all.jar11.2 MBSHA-1 74134ea8a8ca2ec3b25d7a6a7fe7cf80a70a9cf9获取文件 voicechat-discord-paper-2.0.0-dev-all.jar
展开更新日志

Huge thanks to Totobird for being a huge help with this update! Their PR was the main reason I started working on it again.

  • All commands have been moved to subcommands on the /dvc command
    • See https://github.com/naturecodevoid/voicechat-discord#using-it-in-game for docs
    • /startdiscordvoicechat was moved to /dvc start
      • Running /dvc start while in a voice chat session restarts the session
    • New subcommand: /dvc stop
      • Only usable while currently in a discord voice chat session
      • Disconnects the bot and stops the session
    • New subcommand: /dvc group
    • New subcommand: /dvc togglewhisper
      • Allows mod users to whisper
    • New subcommand: /dvc reloadconfig
      • Only usable by operators or players with the voicechat-discord.reload-config permission
      • Stops all sessions and reloads the config
    • New subcommand: /dvc checkforupdate
      • Only usable by operators
      • Checks for a new update using the GitHub API. If one is found, finds the version on Modrinth and links to the version page.
  • Group support (/dvc group)
  • Whispering support (/dvc togglewhisper)
  • Added support for people using the mod to hear static/entity/locational audio channels
  • Use the new audio sender API to improve compatibility with other addons
  • [Fabric only] Use the Fabric Permissions API to support mods like LuckPerms for the reload config permission
  • Added version checker to ensure the plugin/mod is updated
  • Added Simple Voice Chat version checker to ensure we have a new enough version of the mod
  • Hopefully fixed #5
  • Better login failure error handling and logging
  • Improvements to messages sent to players to be more clear
  • Optional debug logging to hopefully help with debugging issues
  • Major refactors and command handling improvements

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.4.0...2.0.0

1.2.0

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19.2 · 1.19.3 · 1.19.4 · 1.20
voicechat-discord-bukkit-1.2.0.jar10.4 MBSHA-1 f2c57c9d452262b4e26b8a0a70da4f36b167edde获取文件 voicechat-discord-bukkit-1.2.0.jar
展开更新日志

⚠️ Warning ⚠️

This is the last release that supports spigot and bukkit. Later releases require Paper. If you are on Paper or Purpur, don’t use this release. Only use this release if you are using Spigot/CraftBukkit and cannot use Paper or Purpur.

Fixed some issues with multiple bots

Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.1.0...1.2.0

依赖关系