You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a `DataOuput` instance, you can also create a delegated class with fallback writing for malformed Strings.
328
+
If you have a `DataOuput` instance, you can also create a delegated class with fallback writing for malformatted Strings.
323
329
```java
324
330
DataOutput output =...;
325
331
@@ -336,9 +342,9 @@ That's because Minecraft have changed across the time (it's a 15th year-old game
336
342
* any, mean a tag, introduced for Java on Minecraft 1.20.2.
337
343
* bedrock file, mean a tag written in a bedrock file with its [header](https://wiki.bedrock.dev/nbt/nbt-in-depth.html#bedrock-nbt-file-header).
338
344
339
-
Following Minecraft format, there's no limit to write with a tag output, but tag input is limited by default with a maximum of 2MB size for tag (due network limitations) and 512 stack depth for nested values (since MC 1.20.2).
345
+
Following Minecraft format, there's no limit to write with a tag output, but tag input is limited by default with a maximum of 2MB size for tag (due network limitations) and 512 stack depth for nested values (since MC 1.20.2) to avoid a stack overflow error.
340
346
341
-
To change that limits you can also modify the recently created TagInput instance, for example:
347
+
To change those limits you can also modify the recently created TagInput instance, for example:
0 commit comments