KingContaria / FastQuit

Lets you return to the title screen early while your world is still saving in the background
MIT License
50 stars 16 forks source link

World disappears when saving #3

Closed Felix14-v2 closed 1 year ago

Felix14-v2 commented 1 year ago

Now FastQuit hides the world from the list for the time of saving. this can greatly frighten a player who accidentally notices that his world has disappeared.

Instead, it makes sense to block the loading of the world that is currently being saved, while adding the mark "blocked during saving" to it. Similar to how it is happening now in vanilla with the label "blocked by another running Minecraft".

KingContaria commented 1 year ago

Hm, not showing it is just what minecraft does by default, i'll have to look into how to modify that. I'll definitely give it a try tho!

KingContaria commented 1 year ago

Okay i think ive got something pretty nice working, it will show the world as normal but when you try to load it it will wait for the world to finish saving (similar to when closing minecraft, it will also open a screen with a "Waiting for x to finish saving...")

KingContaria commented 1 year ago

fixed in 0.4.0

Felix14-v2 commented 1 year ago

Nice!

adding the mark "blocked during saving" to it. Similar to how it is happening now in vanilla with the label "blocked by another running Minecraft".

I meant this: Locked

But your solution may be even seamless :)

KingContaria commented 1 year ago

yea i figured you meant that, the approach i took just turned out to be very easy and clean, which is why i personally prefer it