From 4c61f1d202c53d62bbbcecefc5671819cced05cf Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 22 Sep 2012 13:54:26 -0400 Subject: [PATCH] Remove @SideOnly flag for function now required on the server --- .../net/minecraft/src/CompressedStreamTools.java.patch | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/patches/common/net/minecraft/src/CompressedStreamTools.java.patch b/patches/common/net/minecraft/src/CompressedStreamTools.java.patch index d0fa02dc7..31f735cb6 100644 --- a/patches/common/net/minecraft/src/CompressedStreamTools.java.patch +++ b/patches/common/net/minecraft/src/CompressedStreamTools.java.patch @@ -1,6 +1,14 @@ --- ../src_base/common/net/minecraft/src/CompressedStreamTools.java +++ ../src_work/common/net/minecraft/src/CompressedStreamTools.java -@@ -155,7 +155,6 @@ +@@ -140,7 +140,6 @@ + NBTBase.writeNamedTag(par0NBTTagCompound, par1DataOutput); + } + +- @SideOnly(Side.CLIENT) + public static void write(NBTTagCompound par0NBTTagCompound, File par1File) throws IOException + { + DataOutputStream var2 = new DataOutputStream(new FileOutputStream(par1File)); +@@ -155,7 +154,6 @@ } }