Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fullscreen #360

Merged
merged 13 commits into from
Jul 27, 2023
Merged

fullscreen #360

merged 13 commits into from
Jul 27, 2023

Conversation

thesuzerain
Copy link
Contributor

@thesuzerain thesuzerain commented Jul 24, 2023

Fixes MOD-442

Improves checks for profile importing (java)

@thesuzerain thesuzerain marked this pull request as ready for review July 25, 2023 02:00
Comment on lines 456 to 485
// Overwrites the minecraft options.txt file with the settings from the profile
// Uses 'a:b' syntax which is not quite yaml
let options_path = instance_path.join("options.txt");
let mut options_string = String::new();
if options_path.exists() {
let options = io::read_to_string(&options_path).await?;
let options = options.split('\n');
for option in options {
let option = option.split(':').collect::<Vec<_>>();
if option.len() == 2 {
let key = option[0].trim();
let value = option[1].trim();
if let Some(value) = mc_set_options
.iter()
.find(|(k, _)| k == key)
.map(|(_, v)| v)
{
options_string.push_str(&format!("{}:{}\n", key, value));
} else {
options_string.push_str(&format!("{}:{}\n", key, value));
}
}
}
} else {
for (key, value) in mc_set_options {
options_string.push_str(&format!("{}:{}\n", key, value));
}
}
io::write(&options_path, options_string).await?;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't we should overwrite the file. I think the slider should read/write from options.txt

@Geometrically Geometrically merged commit c364468 into master Jul 27, 2023
6 checks passed
@Geometrically Geometrically deleted the fullscreen-discord-bugs branch July 27, 2023 07:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants