mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
b06cb423cb
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 Bukkit Changes: b999860d SPIGOT-2304: Add LootGenerateEvent CraftBukkit Changes:77fd87e4
SPIGOT-2304: Implement LootGenerateEventa1a705ee
SPIGOT-5566: Doused campfires & fires should call EntityChangeBlockEvent41712edd
SPIGOT-5707: PersistentDataHolder not Persistent on API dropped Item
20 lines
No EOL
716 B
Diff
20 lines
No EOL
716 B
Diff
From 0000000000000000000000000000000000000000 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 9d4fcf8bcf..4b9760709d 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
@@ -0,0 +0,0 @@ public class WorldProviderTheEnd extends WorldProvider {
|
|
|
|
@Override
|
|
public float a(long i, float f) {
|
|
- return 0.0F;
|
|
+ return 0.5F; // Paper - fix MC-93764
|
|
}
|
|
|
|
@Override
|
|
--
|