Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes - typos, fix old-style alert boxes #14

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion i18n/en/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"message": "You must have a plan with a dedicated IP. In Geyser's config, uncomment the `bedrock address` and set it to the public IP of your server (e.g. `address: 51.79.129.18`). Leave the port as `19132`. Under the home tab, select 'Enable UDP Network' and restart the server. See Bisect's [article](https://www.bisecthosting.com/clients/index.php?rp=/knowledgebase/193/How-to-install-Geyser-and-Floodgate-on-a-Minecraft-Java-server.html) for full instructions. If you still cannot connect after following these instructions, contact Bisect Support as they reportedly have UDP disabled on some nodes."
},
"providers.provider.bloomhost.description": {
"message": "https://docs.bloom.host/plugins/geysermc/"
"message": "See [Bloom's documentation](https://docs.bloom.host/plugins/geysermc/) for setup instructions."
},
"providers.provider.craft-hosting.description": {
"message": "Set the Bedrock port to the Java server's port and connect with that port; note that this provider appears to only provide service in Russia."
Expand Down
2 changes: 1 addition & 1 deletion src/data/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export const providersData: Providers = {
url: 'https://www.bloom.host/',
description: translate({
id: 'providers.provider.bloomhost.description',
message: "https://docs.bloom.host/plugins/geysermc/"
message: "See [Bloom's documentation](https://docs.bloom.host/plugins/geysermc/) for setup instructions."
})
},
{
Expand Down
8 changes: 4 additions & 4 deletions wiki/geyser/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ The Geyser API offers events to subscribe to, or information on whether a player
It can be used easily in Geyser Extensions, see [here](/wiki/geyser/extensions) for details on those.

**Quick overview:**
<div class="alert alert-info" role="alert">
:::info
Note: To see full, detailed documentation, see the <a href="https://repo.opencollab.dev/javadoc/maven-snapshots/org/geysermc/geyser/api/latest">javadocs</a>.
</div>
:::

#### [GeyserApi](https://github.com/GeyserMC/Geyser/blob/master/api/src/main/java/org/geysermc/geyser/api/GeyserApi.java): {#geyserapi}
The GeyserApi interface serves as a central access point to various functionalities provided by the Geyser API, providing methods to e.g. interact with player connections.
Expand All @@ -49,10 +49,10 @@ Used to check if the given UUID of an **online** player is a Bedrock player.
Used to get the [Connection](https://github.com/GeyserMC/api/blob/master/base/src/main/java/org/geysermc/api/connection/Connection.java) of an **online** player.
This method will return null if the player is not a Bedrock player.

<div class="alert alert-info" role="alert">
:::info
You don't need to wait until the Bedrock player is online to use the getPlayer and isBedrockPlayer methods.
You can even use them in the pre-login events.
</div>
:::

`GeyserApi#sendForm(UUID, Form(Builder))`
Used to send a form to the Bedrock player with the given UUID.
Expand Down
2 changes: 1 addition & 1 deletion wiki/geyser/common-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To fix "Unable to connect to world" with no console errors, see [here](/wiki/gey
*If the Geyser instance is locally hosted:* try using `localhost` or `0.0.0.0` as the IP address.
*If that doesn't work, or your Geyser instance is on another computer in the network*: use your **local** IPv4 address.

:::danger
:::warning

See [here](/wiki/geyser/fixing-unable-to-connect-to-world/) for fixing "Unable to Connect to World" with no console errors

Expand Down
6 changes: 3 additions & 3 deletions wiki/geyser/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public class ExampleMod implements ModInitializer, EventRegistrar {
}
}
```
<div class="alert alert-info" role="alert">
Do note: We cannot directly register the event bus in the mod initializer, since the Geyser API would not be loaded yet.
</div>
:::info
Note: We cannot directly register the event bus in the mod initializer, since the Geyser API would not be loaded yet.
:::

Therefore, we register it in the server starting event provided by the Fabric API.

Expand Down
8 changes: 4 additions & 4 deletions wiki/geyser/fixing-unable-to-connect-to-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ description: Common issues and solutions for the 'Unable to Connect to World' er
This is by far the most common error people get when attempting to set up Geyser. Here's some steps on how to solve it.
Usually, this error is caused by improper configuration of Geyser, or issues with your network.

<div class="alert alert-warning" role="alert">
:::warning
If you are using a Minecraft server hosting provider (e.g. Aternos, or Apex Hosting), you should refer to the hosting provider setup instructions on
the <a href="/wiki/geyser/setup/">setup</a> page. Following these will most likely resolve the issue!
</div>
:::

If you are not using a Minecraft server hosting provider, carry on.

<div class="alert alert-info" role="alert">
:::info
To check if your server is (theoretically) reachable on Bedrock edition, try running the following command in your server console:
<code>geyser connectiontest &lt;ip&gt;:&lt;port&gt;</code>, and see what it suggests to try.
</div>
:::

### Java Edition players can't connect! {#java-edition-players-cant-connect}

Expand Down
2 changes: 1 addition & 1 deletion wiki/geyser/setup/provider/modded-servers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Learn how to set up Geyser on your Fabric or NeoForge server from a
import { Versions } from '@site/src/components/Versions'

:::caution
Geyser-Fabric and Geyser-NeoForge run **only** on a <Versions platform="java"/>.
Geyser-Fabric and Geyser-NeoForge run **only** on a <Versions platform="java"/> server.
See [this page](/wiki/geyser/supported-versions#using-geyser-fabric-or-geyser-neoforge-on-servers-that-do-not-run-) for more details.
:::

Expand Down
2 changes: 1 addition & 1 deletion wiki/geyser/setup/self/modded-servers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
import { Versions } from '@site/src/components/Versions'

:::caution
Geyser-Fabric and Geyser-NeoForge run **only** on a <Versions platform="java"/>.
Geyser-Fabric and Geyser-NeoForge run **only** on a <Versions platform="java"/> server.
See [this page](/wiki/geyser/supported-versions#using-geyser-fabric-or-geyser-neoforge-on-servers-that-do-not-run-) for more details.
:::

Expand Down
6 changes: 3 additions & 3 deletions wiki/geyser/supported-hosting-providers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ description: A list of hosting providers and their support for Geyser.

import { Provider } from "@site/src/components/Provider";

:::danger
:::caution

This list is incomplete. Please open a [PR](https://github.com/GeyserMC/GeyserWebsite/pulls) or contact us on [Discord](https://discord.gg/geysermc) if the information is incorrect, or you want to add a new hosting provider!

:::

:::caution

It should also be noted that these providers may not be verified by the Geyser team, and the server providers below are reported as working by members of the community.
These providers are not verified by the Geyser team, and the server providers below are reported as working by members of the community.

:::

:::caution
:::info

Using a <i>"Free Host"</i> may not give you the best experience <i>at all</i>. If you want better support, more freedom to control your server, and learn how to run one, PLEASE pay for a server.

Expand Down