FIX: Add correct initial value to solve bug

This commit is contained in:
GithubAnon0000 2025-09-29 22:46:07 +02:00
parent 11dbaa740e
commit 2a467559c3

View file

@ -25,7 +25,7 @@ pub(crate) fn schema11_config_as_string(creation_offset: Option<i32>) -> String
"schedVer": 2,
"creationOffset": creation_offset,
"sched2021": true,
"hideColor": true,
"hideColor": false,
});
serde_json::to_string(&obj).unwrap()
}