mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From e0291e8477c3d29eb8f18324789bf6031175237f Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Tue, 3 Dec 2013 11:07:48 +1100
|
|
Subject: [PATCH] Clear Flower Pot on Drop
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockFlowerPot.java b/src/main/java/net/minecraft/server/BlockFlowerPot.java
|
|
index ef909f7..734dcb4 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockFlowerPot.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockFlowerPot.java
|
|
@@ -91,6 +91,7 @@ public class BlockFlowerPot extends BlockContainer {
|
|
|
|
if (tileentityflowerpot != null && tileentityflowerpot.a() != null) {
|
|
this.a(world, i, j, k, new ItemStack(tileentityflowerpot.a(), 1, tileentityflowerpot.b()));
|
|
+ tileentityflowerpot.a( null, 0 ); // Spigot
|
|
}
|
|
}
|
|
|
|
@@ -99,6 +100,7 @@ public class BlockFlowerPot extends BlockContainer {
|
|
|
|
if (tileentityflowerpot != null && tileentityflowerpot.a() != null) {
|
|
this.a(world, i, j, k, new ItemStack(tileentityflowerpot.a(), 1, tileentityflowerpot.b()));
|
|
+ tileentityflowerpot.a( null, 0 ); // Spigot
|
|
}
|
|
|
|
super.remove(world, i, j, k, block, l);
|
|
--
|
|
1.8.3.2
|
|
|