mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
9bafd0634e
At the time this was re-added, there was concern around how the JIT would handle the system property that enabled it. This shouldn't be a problem, and as such we no longer need to block access to it. The Vanilla Method Profiler will not provide much to most users however there is no harm in providing it as an option. For most users, the recommended and supported method for determining performance issues with Paper will continue to be Timings.
23 lines
No EOL
1,010 B
Diff
23 lines
No EOL
1,010 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Brokkonaut <hannos17@gmx.de>
|
|
Date: Fri, 11 Aug 2017 03:29:26 +0200
|
|
Subject: [PATCH] MC-94186 Fix dragon egg falling in lazy chunks
|
|
|
|
Fixes falling dragon eggs in lazy chunks fall to the block below the last empty block and replacing that block with them.
|
|
|
|
See also https://bugs.mojang.com/browse/MC-94186
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockDragonEgg.java b/src/main/java/net/minecraft/server/BlockDragonEgg.java
|
|
index ce186f82..291342c9 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockDragonEgg.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockDragonEgg.java
|
|
@@ -0,0 +0,0 @@ public class BlockDragonEgg extends Block {
|
|
}
|
|
|
|
if (blockposition1.getY() > 0) {
|
|
- world.setTypeAndData(blockposition1, this.getBlockData(), 2);
|
|
+ world.setTypeAndData(blockposition1.up(), this.getBlockData(), 2); // Paper
|
|
}
|
|
}
|
|
|
|
--
|