3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Add missing break when writing IntArrayTag.

Dieser Commit ist enthalten in:
Socolin 2012-05-22 10:29:27 +03:00
Ursprung f910fe4e66
Commit 5cab7900f6

Datei anzeigen

@ -159,6 +159,7 @@ public final class NBTOutputStream implements Closeable {
break;
case NBTConstants.TYPE_INT_ARRAY:
writeIntArrayTagPayload((IntArrayTag) tag);
break;
default:
throw new IOException("Invalid tag type: " + type + ".");
}