mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
22 lines
846 B
Diff
22 lines
846 B
Diff
From f65a56e851df25543ce7622d5484db9828661375 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 aa82a50..e468eb8 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.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.9.1
|
|
|