0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin-Website.git synced 2025-04-12 12:23:05 +00:00
Files
2025-03-17 07:55:18 +01:00

740 B

Query

The Query protocol is a simple way to query the server about its status. Pumpkin fully supports the Query protocol.

Configuring Query

enabled: Boolean

Whether to listen for Query protocol requests or not.

:::code-group

[query]
enabled = true

:::

port: Integer (0-65535) (optional)

Which port to listen to Query protocol requests on. If not specified, it uses the same port as the server.

:::code-group

[query]
enabled = true
port = 12345

:::

Default Config

By default, Query is disabled. It will run on the server port if enabled unless specified explicitly.

:::code-group

[query]
enabled = true
port = 25565

:::