mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 03:39:48 +01:00
71c18fd5c9
This simply provides the base API to create the objects. Further commits will come that adds adds usage of this API to existing GameProfile based API's, as well as new API's.
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From 49c70f3fff8b7fbb9c3525b210359b1323eed49f 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.15.1
|
|
|