We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e032af5 commit f8fb630Copy full SHA for f8fb630
src/lib.rs
@@ -58,6 +58,7 @@ impl Addr {
58
59
async fn main() {
60
let mut settings = Settings::register();
61
+ let map = Map::load();
62
let mut conflict = false;
63
64
static mut startByte: u8 = 0;
@@ -156,13 +157,10 @@ async fn main() {
156
157
settings.update();
158
159
if (settings.Full_game_run && settings.Individual_level) && !conflict {
- let map = Map::load();
160
- map.insert("Full_game_run", false);
161
map.store();
162
-
163
conflict = true;
164
}
165
- else if conflict == true {
+ else {
166
conflict = false;
167
168
0 commit comments