From 691f739fb3ed49529979180eb14d3a5d046cb22c Mon Sep 17 00:00:00 2001 From: Progwml6 Date: Sun, 16 Mar 2014 09:59:15 -0400 Subject: [PATCH] fix build errors --- build.properties | 2 +- .../java/tconstruct/util/network/packet/PacketUpdateTE.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.properties b/build.properties index 288ffddaeed..d4f37386f20 100644 --- a/build.properties +++ b/build.properties @@ -1,6 +1,6 @@ minecraft_version=1.7.2 forge_version=10.12.0.1027 -mantle_version=109.be29b7d +mantle_version=114.8c6a5a8 FMP_version=1.0.0.211 CCLIB_version=1.0.0.44 NEI_version=1.6.1.8 diff --git a/src/main/java/tconstruct/util/network/packet/PacketUpdateTE.java b/src/main/java/tconstruct/util/network/packet/PacketUpdateTE.java index d9ed63e5138..01cae7bc025 100644 --- a/src/main/java/tconstruct/util/network/packet/PacketUpdateTE.java +++ b/src/main/java/tconstruct/util/network/packet/PacketUpdateTE.java @@ -31,7 +31,7 @@ public void encodeInto(ChannelHandlerContext ctx, ByteBuf buffer) { pbuff.writeInt(z); try { pbuff.writeNBTTagCompoundToBuffer(data); - } catch (IOException e) { + } catch (Exception e) { e.printStackTrace(); } } @@ -44,7 +44,7 @@ public void decodeInto(ChannelHandlerContext ctx, ByteBuf buffer) { z = pbuff.readInt(); try { data = pbuff.readNBTTagCompoundFromBuffer(); - } catch (IOException e) { + } catch (Exception e) { e.printStackTrace(); } }