1.18 spawn fix

This commit is contained in:
Tyler Murphy 2022-04-28 15:56:47 -04:00
parent 25c493c19b
commit c2bac8abfe

View file

@ -134,7 +134,7 @@ public class Config {
//Spawn //Spawn
spawnPosition = new Vector( spawnPosition = new Vector(
config.getDouble("spawns.game.x"), config.getDouble("spawns.game.x"),
Math.max(0, Math.min(255, config.getDouble("spawns.game.y"))), Math.max(Version.atLeast("1.18") ? -64 : 0, Math.min(255, config.getDouble("spawns.game.y"))),
config.getDouble("spawns.game.z") config.getDouble("spawns.game.z")
); );
spawnWorld = config.getString("spawns.game.world"); spawnWorld = config.getString("spawns.game.world");