diff options
author | Zach Brown <[email protected]> | 2016-09-23 17:25:21 -0500 |
---|---|---|
committer | Zach Brown <[email protected]> | 2016-09-23 17:26:14 -0500 |
commit | 3d2be415ccd2ddef9497321ea3d960868b1030a7 (patch) | |
tree | aa67f6e604994eddbe59267ee0dc3db30cc2e1e9 | |
parent | f71ef566dff0d2b1ef510ec1d9ccc3af260376a7 (diff) | |
download | Paper-3d2be415ccd2ddef9497321ea3d960868b1030a7.tar.gz Paper-3d2be415ccd2ddef9497321ea3d960868b1030a7.zip |
Raise bad Y auto fix to avoid gameplay issues
Per discussion here, https://github.com/PaperMC/Paper/commit/d3eb13d60dad0ea895ea8eef73216dae955a3fba#commitcomment-19153154
-rw-r--r-- | Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch b/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch index 81530fa9f8..7c299aa695 100644 --- a/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch +++ b/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch @@ -1,4 +1,4 @@ -From 6b3da1efe41b0866848a471f85b31481ec0e55fc Mon Sep 17 00:00:00 2001 +From 97c0a0a4d4ca2797ea4b10bfad875c777379d66b Mon Sep 17 00:00:00 2001 From: Aikar <[email protected]> Date: Wed, 21 Sep 2016 23:48:39 -0400 Subject: [PATCH] Auto fix bad Y levels on player login @@ -6,17 +6,17 @@ 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 -index ec3a60a..5db0051 100644 +index ec3a60a..da2b5bb 100644 --- a/src/main/java/net/minecraft/server/EntityPlayer.java +++ b/src/main/java/net/minecraft/server/EntityPlayer.java @@ -126,6 +126,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting { } } -+ if (this.locY > 300) this.locY = 200; // Paper - bring down to a saner Y level if out of world ++ if (this.locY > 300) this.locY = 257; // Paper - bring down to a saner Y level if out of world this.getBukkitEntity().readExtraData(nbttagcompound); // CraftBukkit } -- -2.9.3 +2.10.0 |