2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2016-09-22 05:49:27 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 21 Sep 2016 23:48:39 -0400
|
|
|
|
Subject: [PATCH] Auto fix bad Y levels on player login
|
|
|
|
|
|
|
|
Bring down to a saner Y level if super high, as this can cause the server to crash
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-06-30 07:20:29 +02:00
|
|
|
index ab89e508ee8b8142fb7c0b5101b0b0e157a68f35..1f98d4bec282c46355e325dcb9fe0cb23394ba9e 100644
|
2016-09-22 05:49:27 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-06-30 07:20:29 +02:00
|
|
|
@@ -203,6 +203,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-04-27 08:26:04 +02:00
|
|
|
@Override
|
2020-06-25 14:04:34 +02:00
|
|
|
public void loadData(NBTTagCompound nbttagcompound) {
|
|
|
|
super.loadData(nbttagcompound);
|
2019-12-12 19:45:00 +01:00
|
|
|
+ if (this.locY() > 300) this.setPositionRaw(locX(), 257, locZ()); // Paper - bring down to a saner Y level if out of world
|
2017-05-14 20:05:01 +02:00
|
|
|
if (nbttagcompound.hasKeyOfType("playerGameType", 99)) {
|
2019-04-27 08:26:04 +02:00
|
|
|
if (this.getMinecraftServer().getForceGamemode()) {
|
2020-06-25 14:04:34 +02:00
|
|
|
this.playerInteractManager.a(this.getMinecraftServer().getGamemode(), EnumGamemode.NOT_SET);
|