Skip to content

Commit

Permalink
[editor] fixed an issue where after loading a world, the download wor…
Browse files Browse the repository at this point in the history
…lds prompt would show up
  • Loading branch information
PanosK92 committed Jan 21, 2025
1 parent 583ed74 commit f7bab51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/GeneralWindows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ namespace
int world_index = 0;

bool downloaded_and_extracted = false;
bool visible_download_prompt = !downloaded_and_extracted;
bool visible_world_list = downloaded_and_extracted;
bool visible_download_prompt = false;
bool visible_world_list = false;

void world_on_download_finished()
{
Expand Down

0 comments on commit f7bab51

Please sign in to comment.