We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2f7c7 commit 0212a7dCopy full SHA for 0212a7d
src/main.rs
@@ -1094,6 +1094,7 @@ async fn main() {
1094
level_download_button.update(delta_time);
1095
1096
if back_button.is_clicked() {
1097
+ show_level_not_found = false;
1098
game_state.0.set(GameState::CreatorMenu);
1099
}
1100
@@ -1106,7 +1107,6 @@ async fn main() {
1106
1107
.read_to_string()
1108
.unwrap();
1109
-
1110
if level_download_response.clone().contains(";;;;;") {
1111
parse_level_download_response(
1112
level_download_response.clone(),
@@ -1118,6 +1118,7 @@ async fn main() {
1118
&mut online_level_data
1119
);
1120
1121
1122
game_state.0.set(GameState::LevelPage);
1123
} else {
1124
show_level_not_found = true;
0 commit comments