dart_minecraft icon indicating copy to clipboard operation
dart_minecraft copied to clipboard

A Dart library for Minecraft and Mojang Web-APIs, authentication, and NBT Files.

Results 4 dart_minecraft issues
Sort by recently updated
recently updated
newest added

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies

Hello, I noticed that only the server with port 25565 is displayed. If the server has a different port, it is not displayed. below my code: https://pastebin.com/Ne5igc2m

I'm trying to read a Minecraft playerdata file using Flutter Web, and I'm running into a couple issues: 1. Apparently the file I was trying to read was compressed as...

``` void getServer() async { final server = await ping('mc.hypixel.net'); if (server == null || server.response == null) return; final players = server.response!.players; if (kDebugMode) { print('Pinged ...'); } if...