Replies: 12 comments 30 replies
-
I was able to confirm that inventories are now able to save and I was able to see the info messages now confirming they saved. But item frames are now broken? They didn't appear in the save. Oh well. Anyways, best of luck! I need to sleep XD |
Beta Was this translation helpful? Give feedback.
-
Inventories are working here as well in 1.18.2 with the unstable build, and glowing item frames appear okay too (I didn't notice non-glowing ones). I did notice this error in the console window though but I wasn't paying attention to when it happened sadly.
|
Beta Was this translation helpful? Give feedback.
-
Released stable build 1.14.13 on my fork which should fix the inventory issue. |
Beta Was this translation helpful? Give feedback.
-
Released build 1.14.14 on my fork which should fix the inventory issue. The issue was caused by doing packet reading in the wrong section (chest opening packets are from client to the server, and I was putting that code in a place that only reads packets from the server to the client). Also fixed the bug by @AgileGhost mentioned in the PR revolving around the following error: java.lang.ArrayIndexOutOfBoundsException: arraycopy: last source index 10 out of bounds for byte[2]
at java.base/java.lang.System.arraycopy(Native Method)
at packets.DataTypeProvider.readByteArray(DataTypeProvider.java:90)
... This was due to the use item packet not having any information about coordinates of what you interacted with. This may break support for inventory saving for previous versions of Minecraft. |
Beta Was this translation helpful? Give feedback.
-
There are some "low hanging fruit" left that I think I can tackle and shove into this PR while I'm at it, and I want to give a shot at doing those:
|
Beta Was this translation helpful? Give feedback.
-
Released 1.14.17 which adds command block support for #245. (@AgileGhost) |
Beta Was this translation helpful? Give feedback.
-
@mircokroon I had a brief look into In
|
Beta Was this translation helpful? Give feedback.
-
The best part about development is the stuff you find during development that nobody else sees: |
Beta Was this translation helpful? Give feedback.
-
@AgileGhost Adds villager trade saving in 1.14.19 |
Beta Was this translation helpful? Give feedback.
-
@AgileGhost Adds horse, axolotl and sheep support in 1.14.20 |
Beta Was this translation helpful? Give feedback.
-
Merged that, I'll make a release a little bit later today. Thanks again for helping out. |
Beta Was this translation helpful? Give feedback.
-
Made a release. Commandblocks and villager trades are only on 1.18 right? Not sure if this page is 100% up to date now. https://github.com/mircokroon/minecraft-world-downloader/wiki/Features |
Beta Was this translation helpful? Give feedback.
-
PR #354 is getting very cluttered with arbitrary comments, I'd like to bring all of those to here so we don't pollute the PR with ongoing development ideas and bug fixes - I'd rather keep the PR specific to "does it compile", and code reviews.
@AgileGhost @Ravendwyr
I'm currently busy for the next couple hours, but in that time, it would be nice to know if my dev branch actually fixed the inventory saving issue or not. I've made an unstable release here - if you've got time and are willing to try it out, getting feedback on whether this fixes inventory issues would be very helpful!
Beta Was this translation helpful? Give feedback.
All reactions