mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
22 lines
855 B
Diff
22 lines
855 B
Diff
From 0af3275ff3ea1e41a07a5d22f36f311eb356c7e8 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 d1275a3..0fdfdde 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockFlowerPot.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockFlowerPot.java
|
|
@@ -90,6 +90,7 @@ public class BlockFlowerPot extends BlockContainer {
|
|
|
|
if (tileentityflowerpot != null && tileentityflowerpot.b() != null) {
|
|
a(world, blockposition, new ItemStack(tileentityflowerpot.b(), 1, tileentityflowerpot.c()));
|
|
+ tileentityflowerpot.a( null, 0 ); // Spigot
|
|
}
|
|
|
|
super.remove(world, blockposition, iblockdata);
|
|
--
|
|
2.1.0
|
|
|