4.0.1: Fix ByteArrayTag copy

This commit is contained in:
Nassim Jahnke 2024-01-02 12:49:51 +01:00
parent 1d5b6e43f2
commit 18754b7774
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<groupId>com.viaversion</groupId>
<artifactId>nbt</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<packaging>jar</packaging>
<name>ViaNBT</name>

View File

@ -119,7 +119,7 @@ public class ByteArrayTag extends NumberArrayTag {
@Override
public ByteArrayTag copy() {
return new ByteArrayTag(this.value);
return new ByteArrayTag(this.value.clone());
}
@Override