mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
2f782a6652
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes:17543ecf
SPIGOT-5035: Error Using Virtual Merchant GUI0fc6922b
SPIGOT-5028: Villager#setVillagerExperience() doesn't workbdbdbe44
SPIGOT-5024: Fox error - Unknown target reason
23 lines
728 B
Diff
23 lines
728 B
Diff
From 3d00b71729755a10bcbfd5f3b7ca4be9c0e9ace9 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Fri, 19 Oct 2018 19:38:45 -0500
|
|
Subject: [PATCH] Fix MC-93764
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldProviderTheEnd.java b/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
index 715faef171..b97408cffa 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
@@ -27,7 +27,7 @@ public class WorldProviderTheEnd extends WorldProvider {
|
|
|
|
@Override
|
|
public float a(long i, float f) {
|
|
- return 0.0F;
|
|
+ return 0.5F; // Paper - fix MC-93764
|
|
}
|
|
|
|
@Override
|
|
--
|
|
2.21.0
|
|
|