dslake / WorldDownloader

Clones a Minecraft multiplayer world from a remote server to your singleplayer folder
http://www.minecraftforum.net/topic/1444862-
62 stars 19 forks source link

Minecart Chest only saved while stopping downloader inside chunks that contain minecart chests. #54

Open gsarrica opened 9 years ago

gsarrica commented 9 years ago

Seems like minecart chest entities are only saved when stopping the downloader while in the chunks that have minecart chests in them.

If you do get them to save, then start the downloader again and leave the area, then stop again, they get removed from the data.

gsarrica commented 9 years ago

Ok I was able to fix this for myself....

i just lowered the threshold a lot for Minecarts and now they always save. I dont know where the original threshold numbers were from. I am guessing a lot of servers have these set differently for lag requirements. Maybe make these configurable in the options.

WDL.java

else if (entity instanceof EntityMinecart) { threshold = 10; }