add minecraft server to the docs

This commit is contained in:
redmine4404 2024-07-28 17:55:14 +02:00
parent d164320977
commit ed0d84fffc
2 changed files with 4 additions and 0 deletions

View File

@ -41,3 +41,4 @@ to authenticate with the servers.
| Wii U Chat ([authentication](https://github.com/PretendoNetwork/wiiu-chat-authentication) and [secure](https://github.com/PretendoNetwork/wiiu-chat-secure)) | Server for the Wii U Chat app. |
| [BOSS](https://github.com/PretendoNetwork/BOSS) | Server for BOSS (SpotPass) content. |
| [Super Mario Maker](https://github.com/PretendoNetwork/super-mario-maker) | Server for Super Mario Maker online features. |
| [Minecraft: WiiU edition](https://github.com/PretendoNetwork/minecraft-wiiu) | Server for Minecraft: WiiU Edition online features. ⚠️ By default Minigame's public matchmaking is disable by default. You can enable it by modifying the env variable `PN_MINECRAFT_ALLOW_PUBLIC_MATCHMAKING ` to 1 in the `environment/minecraft-wiiu.local.env` environment file.

View File

@ -149,6 +149,9 @@ echo "PN_SMM_SECURE_SERVER_HOST=$server_ip" >>./super-mario-maker.local.env
echo "PN_SPLATOON_SECURE_SERVER_HOST=$server_ip" >>./splatoon.local.env
echo "PN_MINECRAFT_SECURE_SERVER_HOST=$server_ip" >>./minecraft-wiiu.local.env
echo "PN_MINECRAFT_ALLOW_PUBLIC_MATCHMAKING=0" >>./minecraft-wiiu.local.env
echo "# 0 = disable, 1 = enable" >>./minecraft-wiiu.local.env
# Get the Wii U IP address
if [[ -n "$wiiu_ip" ]]; then
if_verbose print_info "Using Wii U IP address $wiiu_ip."