Remove derp brackets (#8)

This commit is contained in:
SOFe 2016-10-03 00:22:19 +08:00 committed by Dylan K. Taylor
parent e9f2bf0085
commit 84e15b6b1a

View File

@ -32,7 +32,6 @@ class IntArrayTag extends NamedTag{
}
public function read(NBT $nbt){
[];
$size = $nbt->getInt();
$this->value = array_values(unpack($nbt->endianness === NBT::LITTLE_ENDIAN ? "V*" : "N*", $nbt->get($size * 4)));
}
@ -47,4 +46,4 @@ class IntArrayTag extends NamedTag{
$str .= implode(", ", $this->value);
return $str . "}";
}
}
}