mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 18:01:17 +01:00
18c3716c49
This enables us a fast reference to the entities current chunk instead of having to look it up by hashmap lookups. We also store counts by type to further enable other performance optimizations in later patches.
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From ddb5420fbc247f84c5d4877b77716179535385ba 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 ce186f825..291342c90 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockDragonEgg.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockDragonEgg.java
|
|
@@ -44,7 +44,7 @@ public class BlockDragonEgg extends Block {
|
|
}
|
|
|
|
if (blockposition1.getY() > 0) {
|
|
- world.setTypeAndData(blockposition1, this.getBlockData(), 2);
|
|
+ world.setTypeAndData(blockposition1.up(), this.getBlockData(), 2); // Paper
|
|
}
|
|
}
|
|
|
|
--
|
|
2.18.0
|
|
|