mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
eb38e51ee0
it used public method instead of private, and moved to world config also improved the implementation to not use obfuscated stuff Also removed the Fix Double chest conversion patch since its fixed in other ways in vanilla
23 lines
750 B
Diff
23 lines
750 B
Diff
From 7ac07ac07ac07ac07ac07ac07ac07ac07ac07ac0 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 7ac07ac07ac0..7ac07ac07ac0 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldProviderTheEnd.java
|
|
@@ -25,7 +25,7 @@ public class WorldProviderTheEnd extends WorldProvider {
|
|
}
|
|
|
|
public float a(long var1, float var3) {
|
|
- return 0.0F;
|
|
+ return 0.5F; // Paper - fix MC-93764
|
|
}
|
|
|
|
public boolean canRespawn() {
|
|
--
|
|
2.19.1
|
|
|