mirror of
				https://hub.spigotmc.org/stash/scm/spigot/spigot.git
				synced 2025-11-01 09:09:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 2fc45636b3b51d8e824d805e3649226a033819b5 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 3287d77..eabea5a 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.8.3.2
 | 
						|
 |