Paper/Spigot-Server-Patches/0141-Auto-fix-bad-Y-levels-on-player-login.patch

23 lines
1.0 KiB
Diff
Raw Normal View History

2018-07-23 10:39:55 +02:00
From a079a95c1d916ad191338fb5fad68745d9cf1558 Mon Sep 17 00:00:00 2001
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
2018-07-23 10:39:55 +02:00
index 1879c32381..b76c28147b 100644
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
@@ -199,6 +199,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
2017-05-14 20:05:01 +02:00
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
+ if (this.locY > 300) this.locY = 257; // 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)) {
if (this.bK().getForceGamemode()) {
this.playerInteractManager.setGameMode(this.bK().getGamemode());
--
2.18.0