29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
|
From 35f02be2e9f1b673eb2f73545b173d1f3d6a8e83 Mon Sep 17 00:00:00 2001
|
||
|
From: md_5 <md_5@live.com.au>
|
||
|
Date: Wed, 9 Oct 2013 18:20:05 +1100
|
||
|
Subject: [PATCH] Fix BrewingStands Removing NBT / Potions
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/net/minecraft/server/BlockBrewingStand.java b/src/main/java/net/minecraft/server/BlockBrewingStand.java
|
||
|
index 6ce80db..9f49f43 100644
|
||
|
--- a/src/main/java/net/minecraft/server/BlockBrewingStand.java
|
||
|
+++ b/src/main/java/net/minecraft/server/BlockBrewingStand.java
|
||
|
@@ -86,7 +86,13 @@ public class BlockBrewingStand extends BlockContainer {
|
||
|
entityitem.motX = (double) ((float) this.a.nextGaussian() * f3);
|
||
|
entityitem.motY = (double) ((float) this.a.nextGaussian() * f3 + 0.2F);
|
||
|
entityitem.motZ = (double) ((float) this.a.nextGaussian() * f3);
|
||
|
- world.addEntity(entityitem);
|
||
|
+ // Spigot Start
|
||
|
+ if ( itemstack.hasTag() )
|
||
|
+ {
|
||
|
+ entityitem.getItemStack().setTag( (NBTTagCompound) itemstack.getTag().clone() );
|
||
|
+ }
|
||
|
+ // Spigot End
|
||
|
+ world.addEntity( entityitem );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
--
|
||
|
1.9.1
|
||
|
|