Update to V1.3

This commit is contained in:
Georg 2015-03-20 13:12:57 +01:00
parent 3922fbdf97
commit c8bf481d1a
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>MinePacks</artifactId>
<version>1.2.3</version>
<version>1.3</version>
<repositories>
<repository>
<id>in-project</id>

View File

@ -46,6 +46,10 @@ public byte[] toByteArray(Inventory inv)
public ItemStack[] toItemStack(byte[] data)
{
if(data == null)
{
return null;
}
try
{
BukkitObjectInputStream bois = new BukkitObjectInputStream(new ByteArrayInputStream(data));