1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-19 06:49:28 +00:00

Address some changes.

This commit is contained in:
oryxel1
2025-12-15 18:04:17 +07:00
parent 18bab1aa9f
commit fbcd4aa329
3 changed files with 5 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ The ultimate goal of this project is to allow Minecraft: Bedrock Edition users t
Special thanks to the DragonProxy project for being a trailblazer in protocol translation and for all the team members who have joined us here!
## Supported Versions
Geyser is currently supporting Minecraft Bedrock 1.21.90 - 1.21.130 and Minecraft Java 1.21.11. For more information, please see [here](https://geysermc.org/wiki/geyser/supported-versions/).
Geyser is currently supporting Minecraft Bedrock 1.21.111 - 1.21.130 and Minecraft Java 1.21.11. For more information, please see [here](https://geysermc.org/wiki/geyser/supported-versions/).
## Setting Up
Take a look [here](https://geysermc.org/wiki/geyser/setup/) for how to set up Geyser.

View File

@@ -70,6 +70,9 @@ public class VehicleComponent<T extends Entity & ClientVehicle> {
@Getter
protected final BoundingBox boundingBox;
@Getter
private boolean inWater;
protected float stepHeight;
@Getter @Setter
protected float moveSpeed;
@@ -165,8 +168,6 @@ public class VehicleComponent<T extends Entity & ClientVehicle> {
//
}
@Getter
private boolean inWater;
/**
* Called every session tick while the player is mounted on the vehicle.
*/

View File

@@ -174,7 +174,7 @@ public final class GameProtocol {
* @return the supported Minecraft: Java Edition version
*/
public static String getJavaMinecraftVersion() {
return "1.21.11";
return DEFAULT_JAVA_CODEC.getMinecraftVersion();
}
/**