From f8ae8429718881bfb03e9a251aab69094f8070bd Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Mon, 26 Jul 2021 12:04:37 -0400 Subject: [PATCH] Revert "You cant call gson, the exception is that the string is too long," This reverts commit ca01d6efb80dd754ce0a454011cba8ebaedb54ef. --- .../java/com/volmit/iris/engine/parallax/ParallaxChunkMeta.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/volmit/iris/engine/parallax/ParallaxChunkMeta.java b/src/main/java/com/volmit/iris/engine/parallax/ParallaxChunkMeta.java index 60c42750f..ef8a62426 100644 --- a/src/main/java/com/volmit/iris/engine/parallax/ParallaxChunkMeta.java +++ b/src/main/java/com/volmit/iris/engine/parallax/ParallaxChunkMeta.java @@ -47,7 +47,7 @@ public class ParallaxChunkMeta { catch(Throwable e) { - IO.writeAll(new File("WTF", UUID.randomUUID().toString()), new Gson().toJson(parallaxChunkMeta)); + IO.writeAll(new File("WTF", UUID.randomUUID().toString() + ".json"), new Gson().toJson(parallaxChunkMeta)); } }